List Of Snippets With Tag: "event"

Prevent Event To Take Action in Miscellaneous

Taken from http://forum.stormweb.no/index.php/topic,441.msg1196.html#msg1196
This one will prevent SpinBox's _Change to action

PUBLIC SUB Form_Open()
  OBJECT.LOCK(SpinBox1)
  SpinBox1.Value = 50
  OBJECT.UNLOCK(SpinBox1)
END

Posted: 2008.09.15 18:53 | By: silent | 0 comments

1