the normal usage would be side by side with the input screen and thus the only place I want scrolling is within the textedit field.
that is an interesting point. If I was using LABEL/BUTTON to render that page then I'd probably be forced to go FOLDER/PAGE to avoid the window exceeding the screen size, or perhaps endup requesting a SCROLLBAR attribute for GRID.
There will also be about 15 locations in our form (different folder pages) where this will be in use.
Consider how data is sent from the backend to the GDC in this scenario. I had one site who said their system was running slow. When we looked into it there were about 10 folder pages and a number of TEXTEDITs, some of them that were very large (30,000-60,000 characters)). All the information in the folder pages was 'displayed' at the beginning. WHilst their was improvement by only sending the data for the folder pages to the GDC when the individual page was clicked on, you can't do the same for a TEXTEDIT. You have to send the whole info even though the user may not scroll down in the TEXTEDIT and ever read it all.
If you want to pursue the TEXTEDIT further, also consider WebKit. Instead of creating a textedit string, create an html file and display it via webkit. You will get a wider range of HTML functionality (but still no ability to trigger a GDC action)
The content of each page will also change quite a bit depending on what our patients have previously had, how many times they've been, what they wear for correction, the severity of their vision, how they pay etc. Doing this in a text string is actually very simple but handling labels and buttons would be very problematic and I'm really not convinced the DGC would correctly handle the layout.
You know your application and data better then I do (although I think I can guess why the right is on the left, and the left is on the right :-)). I didn't see anything that didn't scare me away from using LABEL/BUTTON, FOLDER/PAGE, DISPLAY BY NAME, and some hidden methods on Page, Grids, and/or individual LABELS/BUTTONS.