DIAdemヘルプ

Method: RunInitialize for RadioButton

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

Method: RunInitialize for RadioButton

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

Object.RunInitialize
ObjectRadioButton
Object with this method

The following example triggers the EventInitialize event for the RadioButton1 radio button when ComboBox1 changes:

Sub RadioButton1_EventInitialize(ByRef This)
  'Do something
End Sub
Sub ComboBox1_EventChange(ByRef This)
  Call RadioButton1.RunInitialize
End Sub