R
randrob
making a word for drop down needed nore then 25 entries
i have succesfully added the VBA to do this
now the issue i have is this
here is the code to fill the drop down bok for a form
Private Sub UserForm_Initialize()
ComboBox1.ColumnCount = 1
'Load data into ComboBox
ComboBox1.List() = Array("FCI-Allenwood", "FCI-Loretto",
"FCI-McKean", "Chick Buckbee Juv Center")
End Sub
as i enter felds into the = array area
it gets to the point that it will not let me type in any more data (in
the sample code above i have 4 when done there wil be about 125)
what i need to know is how to make the array info continue on the next
line
hope i explained this correctly
thanks for any help
i have succesfully added the VBA to do this
now the issue i have is this
here is the code to fill the drop down bok for a form
Private Sub UserForm_Initialize()
ComboBox1.ColumnCount = 1
'Load data into ComboBox
ComboBox1.List() = Array("FCI-Allenwood", "FCI-Loretto",
"FCI-McKean", "Chick Buckbee Juv Center")
End Sub
as i enter felds into the = array area
it gets to the point that it will not let me type in any more data (in
the sample code above i have 4 when done there wil be about 125)
what i need to know is how to make the array info continue on the next
line
hope i explained this correctly
thanks for any help