DIAdemヘルプ

Method: RunInitialize for SpinBox

  • 更新日2024-09-12
  • 4分で読める

Method: RunInitialize for SpinBox

Triggers the EventInitialize event for a control in user dialog boxes.

Object.RunInitialize
ObjectSpinBox
Object with this method

The following example triggers the EventInitialize event for the SpinBox1 control when the ComboBox1 changes:

Sub SpinBox1_EventInitialize(ByRef This)
  'Do something
End Sub
Sub ComboBox1_EventChange(ByRef This)
  Call SpinBox1.RunInitialize
End Sub