C Cheez New member Local time Yesterday, 22:48 Joined Mar 6, 2022 Messages 17 Mar 10, 2022 #1 hello all hopefully a simple question here. I have a combo box with 3 columns in it. how would I the get columns (1) value using this code. month = frm.Controls(strMonth) Last edited: Mar 10, 2022
hello all hopefully a simple question here. I have a combo box with 3 columns in it. how would I the get columns (1) value using this code. month = frm.Controls(strMonth)
Mike Krailo Well-known member Local time Yesterday, 23:48 Joined Mar 28, 2020 Messages 1,704 Mar 10, 2022 #2 month = frm.Controls(strMonth).column(0)
C Cheez New member Local time Yesterday, 22:48 Joined Mar 6, 2022 Messages 17 Mar 10, 2022 #3 ty very much!