Folder scrolling pages
Posted: Thu Mar 23, 2006 11:07 pm
Hello to all
Is it possible to have a scrolling page that is part of a folder object. The child dialog has more objects on it and the dialog is lager than the folder’s window display size. I’ve enabled the vertical scroll bar on the child dialog but no scrolling is don when I click on it. The scroll bar dose show up correctly.
The hole thing will be used by people with low vision so I have to make the colors and text “user friendly” for them.
Thanks
Is it possible to have a scrolling page that is part of a folder object. The child dialog has more objects on it and the dialog is lager than the folder’s window display size. I’ve enabled the vertical scroll bar on the child dialog but no scrolling is don when I click on it. The scroll bar dose show up correctly.
The hole thing will be used by people with low vision so I have to make the colors and text “user friendly” for them.
Thanks
Code: Select all
STATIC PROCEDURE Main2()
DEFINE DIALOG oMainWin NAME "MAIN_WIN1" FONT oMainFont COLOR CLR_YELLOW, CLR_BLACK
REDEFINE SAY ID 101 OF oMainWin COLOR CLR_YELLOW, CLR_BLACK
REDEFINE SAY ID 103 OF oMainWin COLOR CLR_YELLOW, CLR_BLACK
REDEFINE COMBOBOX adata[1] ID 102 OF oMainWin
REDEFINE COMBOBOX adata[2] ID 104 OF oMainWin
REDEFINE FOLDER oFld1 ID 105 OF oMainWin ITEMS "FULL PRG", "AMEA PRG";
PAGES "SMALL_PRG", "BIG_PRG" COLOR CLR_WHITE, CLR_BLACK
REDEFINE BUTTON ID 106 OF oMainWin ACTION oMainWin:End()
ACTIVATE DIALOG oMainWin CENTER
RETURN