Ark68
Well-known Member
- Joined
- Mar 23, 2004
- Messages
- 4,570
- Office Version
- 365
- 2016
- Platform
- Windows
I have hit a roadblock in the progress of my VBA project. I am reaching out to a second group of pros to see if perhaps they have a solution after having limited success where I had originally posted my question.
I have two open userforms. userform1 (uf3_group_1) has a textbox (textbox1) in which I am trying to populate from the listbox (miss_rn) selection from userform2 (miss_rn).
I am failing with this line in the initialization code of userform1.
This attempt also failed.
I am getting an "Object required." error.
I have two open userforms. userform1 (uf3_group_1) has a textbox (textbox1) in which I am trying to populate from the listbox (miss_rn) selection from userform2 (miss_rn).
I am failing with this line in the initialization code of userform1.
Code:
TextBox1.Value = test_mr.miss_rn.ListIndex
Code:
TextBox1.Value = test_mr.miss_rn.List(.ListIndex, 1)
I am getting an "Object required." error.