Folder scrolling pages

Post Reply
kronos911
Posts: 37
Joined: Sat Oct 22, 2005 2:15 pm
Location: Greece

Folder scrolling pages

Post by kronos911 »

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.

Image

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
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

It is not implemented yet. We plan to implement it for a next build.
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply