I use two User Forms in Excel and I pass some information from textBoxes of Form1 in textBoxes of Form2. I can select a specific item in a listbox (using ListIndex) but I need to call the listBox_DblClick event.
I tried the code:
but without success (I made the procedure Public).
I can call a Public procedure in this Form2
but no result, also. I mean the Public procedure is triggered but the code inside is wrong.
Can anybody help?
Thanks in advance!
I tried the code:
Code:
Frms!Form2.ListBox1_DblClick
I can call a Public procedure in this Form2
Code:
Public Sub DoubleClickRemote()
me.ListBox1_DblClick
End Sub
Can anybody help?
Thanks in advance!