I can't seem to get a window or dialogbox to scroll?? I can get scroll bars to APPEAR using -addstyle => WS_VSCROLL | WS_HSCROLL But they provide no functionality?
I want to split my application main window in half and display a 2nd window in the top half and a 3rd window in the bottom half. These 2 child windows or dialogboxes will have their own set of widgets. Window2 will display data record DETAILS in a scrolling window. This top window will need to be scrollable so that the user can get at all the Textfields, to see and edit them. Window3 will contain a ListView control showing record summaries as a scrollable datasheet (rows/columns). When the user selects a single ListView row, the details will show in the Top half of the screen in Textfields, and can be edited. The user can edit the data and click a SAVE Button which will refresh the contents of the selected ListView row. Menu option SaveExit can be chosen so that the "touched" records will be updated in the database. Menu Option Exit can be used to exit without saving any of the changes. Help!