DIAdem Help

Method: RunInitialize for ChnCtrl

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

Method: RunInitialize for ChnCtrl

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

Object.RunInitialize
ObjectChnCtrl
Object with this method

The following example triggers the EventInitialize event for the channel entry field ChnCtrl1 event for the channel entry field when the ComboBox1 changes:

Sub ChnCtrl1_EventInitialize(ByRef This)
  'Do something
End Sub
Sub ComboBox1_EventChange(ByRef This)
  Call ChnCtrl1.RunInitialize
End Sub