This is my first attempt at a vb program.
After reading external data (each read can have a different number of strings in it) and adding them to a collection, I'm having a problem with the syntax to "title" a series of labels in a form from the collected data.
Here is where I am having difficulty.
' How many configurations do we have?
numConfigs = Part.GetConfigurationCount()
frmConfigSpecific.lblNumConfigs.Caption = numConfigs & " Configurations Found"
' Store the names of the configurations
Names = Part.GetConfigurationNames()
For i = 0 To (numConfigs - 1)
ConfigNames.Add (Names)
Next i
'For Each i In Names
' frmConfigSpecific.lblConfig Str(i) = i
' If i = numConfigs Then Exit For
' End If
'Next i
Also, is it possible here to somehow define how many label boxes appear in my 'frmConfigSpecific' ?
*Remember.......
If you don't use your head,
your going to have to use your feet.
After reading external data (each read can have a different number of strings in it) and adding them to a collection, I'm having a problem with the syntax to "title" a series of labels in a form from the collected data.
Here is where I am having difficulty.
' How many configurations do we have?
numConfigs = Part.GetConfigurationCount()
frmConfigSpecific.lblNumConfigs.Caption = numConfigs & " Configurations Found"
' Store the names of the configurations
Names = Part.GetConfigurationNames()
For i = 0 To (numConfigs - 1)
ConfigNames.Add (Names)
Next i
'For Each i In Names
' frmConfigSpecific.lblConfig Str(i) = i
' If i = numConfigs Then Exit For
' End If
'Next i
Also, is it possible here to somehow define how many label boxes appear in my 'frmConfigSpecific' ?
*Remember.......
If you don't use your head,
your going to have to use your feet.