ex.hlp (Topic list)
Change Event Example
                        Example                Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
' In this example, each time the scroll bar is clicked the numeric setting of
' the scroll bar's Value property is displayed in a text box.
 
' To try this example:
' 1. Choose New Project from the File menu
' 2. Choose New Form from the File menu to create a form with:
'    • Text box
'    • Horizontal scroll bar
' 3. Set scroll bar properties:
'    • Max = 1000
'    • LargeChange = 100
' 4. Press Alt+F4 to return to the programming environment
' 5. Copy the code example below to the form module
' 6. Press F5 to run the example
 
 SUB HScroll1_Change ()
     Text1.Text = STR$(HScroll1.Value)
 END SUB