Scroll and Timer Control


Scroll Bar - let the user control values changes, rather then to type it


ex.:


   min = 5

   max = 100

   smallchange = 1

   largechange = 5


where:


   min - max are the range of the scroll bar

   smallchange is the step speed or step value

   largechange is the black value speed


ex.:


   label2.fontsize = vscroll4.value

   label4.caption = vscroll4.value



Timer Control - where a value of 500 is equal to 1/2 sec. on your watch and is good for background processes

 

pls. make sure that the Interval property is set to fixed value before it's to be used

 

ex.:

 

if Timer1.interval = 15000 then

 

        ...

        ...

endif