This is pretty self explanatory. I'm trying to set a textbox equal to my selected row of my 2-column listbox. Column1 is a city Column2 is a state.
So if the listbox has a row like:
San Diego | CA
What I have now: Me.textField.Value = Me.listBox.Column(1) & ", " & Me.listBox.Column(2) Shows: "CA, " in the textbox
If i change this to:Me.textField.Value = Me.listBox.Column(2) & ", " & Me.listBox.Column(1) I get closer with: ", CA"
#1 - How do I get my city listed
#2 - Why would column2 go before column1
Thank you in advance,
Modest
So if the listbox has a row like:
San Diego | CA
What I have now: Me.textField.Value = Me.listBox.Column(1) & ", " & Me.listBox.Column(2) Shows: "CA, " in the textbox
If i change this to:Me.textField.Value = Me.listBox.Column(2) & ", " & Me.listBox.Column(1) I get closer with: ", CA"
#1 - How do I get my city listed
#2 - Why would column2 go before column1
Thank you in advance,
Modest