TheSearcher
Registered User.
- Local time
- Today, 09:30
- Joined
- Jul 21, 2011
- Messages
- 342
I have a list box called lst_Goals. On the double-click event it should populate txt_Goal and txt_Comments with values. Here is the code:
txt_Goal poplates as it should.
txt_Comments remains blank.
I put a msgbox in the double-click event that looks like this:
It displays the value I expect to be in txt_Comments.
I then changed the code on the double-click event to this:
txt_Comments still remains blank.
txt_Comments is enabled and not locked.
Has anyone run across anything like this before? I even deleted txt_Comments and recreated it but the same issue remains.
Any help will be greatly appreciated. I'm pulling my hair out and I'm already bald!
Code:
txt_Goal = lst_Goals.Column(0)
txt_Comments = lst_Goals.Column(1)
txt_Goal poplates as it should.
txt_Comments remains blank.
I put a msgbox in the double-click event that looks like this:
Code:
msgbox lst_Goals.column(1)
I then changed the code on the double-click event to this:
Code:
Me.txt_Comments = "Test"
txt_Comments is enabled and not locked.
Has anyone run across anything like this before? I even deleted txt_Comments and recreated it but the same issue remains.
Any help will be greatly appreciated. I'm pulling my hair out and I'm already bald!