ni.com is currently undergoing scheduled maintenance.

Some services may be unavailable at this time. Please contact us for help or try again later.

DIAdemヘルプ

Method: RunInitialize for EnumComboBox

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

Method: RunInitialize for EnumComboBox

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

Object.RunInitialize
ObjectEnumComboBox
Object with this method

The following example triggers the EventInitialize event for the EnumComboBox1 selection list when ComboBox1 changes:

Sub EnumComboBox1_EventInitialize(ByRef This)
   'Do something
End Sub
Sub ComboBox1_EventChange(ByRef This)
   Call EnumComboBox1.RunInitialize
End Sub