J
jderrig
Do I have to use a user form for a combo box? I have a document that has
text boxes and a few combo boxes and an update button that will load the
information into an Access database. My issue is that I have populated these
boxes by using run form but then it is blank when I open it up again. I have
tried to using userform_initialize but I don't quite understand the process
as the form pops up first thing when I open the document and the combo boxes
are lower in the document so it is confusing to have it open first thing.
This is the coding that I have:
Private Sub Education_Change()
Education.List = Array("High School", "AA/AS", "BA/BS", "Master's",
"Doctorate")
End Sub
Help would be greatful, thanks.
text boxes and a few combo boxes and an update button that will load the
information into an Access database. My issue is that I have populated these
boxes by using run form but then it is blank when I open it up again. I have
tried to using userform_initialize but I don't quite understand the process
as the form pops up first thing when I open the document and the combo boxes
are lower in the document so it is confusing to have it open first thing.
This is the coding that I have:
Private Sub Education_Change()
Education.List = Array("High School", "AA/AS", "BA/BS", "Master's",
"Doctorate")
End Sub
Help would be greatful, thanks.