PopulateComboBoxWithStepNos Method
- Last UpdatedNov 06, 2025
- 1 minute read
The PopulateComboBoxWithStepNos() method populates the specified combo box with sequence numbers for the the specified job.
'Declaration
Public Shared Sub PopulateComboBoxWithStepNos( _
ByVal cboStepNos As ComboBox, _
ByVal woID As String, _
ByVal operID As String, _
ByVal seqNo As Integer, _
ByVal includeEmptyEntry As Boolean _
)
public static void PopulateComboBoxWithStepNos(
ComboBox cboStepNos,
string woID,
string operID,
int seqNo,
bool includeEmptyEntry
)
Parameters
- cboStepNos
- Required. Holds the combo box to be filled with sequence numbers.
- woID
- Required. Holds the ID of the job's work order.
- operID
- Required. Holds the ID of the job's operation.
- seqNo
- Required. Holds the number of the job's operation sequence.
- includeEmptyEntry
- Required. Holds a flag that, if set to true, specifies that an empty entry be placed at the beginning of the combo box.