I have a Click event on a Button. At runtime, clicking the button should
cause clearing of the data from a TextArea & some ListBoxes. There's no
way this 'clearance' cannot be executed as the Exec of a CL program
(which definitely happens because it populates these controls) soon
follows it. However, it doesn't seem to do so. Clearance coding:
With StopListBox
    .Clear
    .Refresh
  End With
  With SteckersListBox
    .Clear
    .Refresh
  End With
  With ReflectorListBox
    .Clear
    .Refresh
  End With
  With RotorsListBox
    .Clear
    .Refresh
  End With
  With DetailTextArea
    .Clear
    .Refresh
  End With

Is the above the correct method of causing the clearance to happen on
the screen immediately?
 
-- 

John



------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to