Good Afternoon,
I have a combobox on my form (cboBuilderName) that I am filling with an array:
Private mBuilderCompany() As Builder =
mBuilder.GetBuilders("")
Dim pintCount As Integer
For pintCount = 0 To mBuilderCompany. _
GetUpperBound(0)
cboBuilderName.Items.Add
(mBuilderCompany(pintCount).Company)
I also have a label that needs to display the currently selected records builder number. (lblbuilderNo) the field in my mBuilder is SAPBUILDERNO.
Any suggestions?
I have a combobox on my form (cboBuilderName) that I am filling with an array:
Private mBuilderCompany() As Builder =
mBuilder.GetBuilders("")
Dim pintCount As Integer
For pintCount = 0 To mBuilderCompany. _
GetUpperBound(0)
cboBuilderName.Items.Add
(mBuilderCompany(pintCount).Company)
I also have a label that needs to display the currently selected records builder number. (lblbuilderNo) the field in my mBuilder is SAPBUILDERNO.
Any suggestions?