DIAdem Help

Method: RunInitialize for ChnListBox

  • Updated2024-09-12
  • 2 minute(s) read

Method: RunInitialize for ChnListBox

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

Object.RunInitialize
ObjectChnListBox
Object with this method

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

Sub ChnListBox1_EventInitialize(ByRef This)
  'Do something
End Sub
Sub ComboBox1_EventChange(ByRef This)
  Call ChnListBox1.RunInitialize
End Sub