DIAdem Help

Method: RunInitialize for XTable

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

Method: RunInitialize for XTable

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

Object.RunInitialize
ObjectXTable
Object with this method

The following example triggers the EventInitialize event for the extended table XTable1 when ComboBox1 changes:

Sub XTable1_EventInitialize(ByRef This)
   'Do something
End Sub
Sub ComboBox1_EventChange(ByRef This)
   Call XTable1.RunInitialize
End Sub