Hi everyone,
Hope you good guys.
Since 1 week, I try everything in my possible and nothing works...
The goal ?
=> I have a form that lists differents values in my cells. In this list, I have a search bar and I have to double click on a item to have what I want after. When I double click, another form is opened with the details of item that I double clicked etc. In brief everything work actually when I did this manually.
I want to do this automatically ! The auto searching is working but after this I want to click on the first item of this list to access to the second form.
Example :
To summarize, I want to call the Lst_Taxo_DblClik on the first item of the list (or the only one which is found ?) directly after in the autotag in the search bar in user form.
THANKS FOR YOUR HELP <3
Hope you good guys.
Since 1 week, I try everything in my possible and nothing works...
The goal ?
=> I have a form that lists differents values in my cells. In this list, I have a search bar and I have to double click on a item to have what I want after. When I double click, another form is opened with the details of item that I double clicked etc. In brief everything work actually when I did this manually.
I want to do this automatically ! The auto searching is working but after this I want to click on the first item of this list to access to the second form.
Example :
VBA Code:
Private Sub UserForm_Initialize()
/* code with the auto tag in the searching bar*/
Public Sub Lst_Taxo_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
/*Print the other form after I double clicked on the item I want in a the list.
To summarize, I want to call the Lst_Taxo_DblClik on the first item of the list (or the only one which is found ?) directly after in the autotag in the search bar in user form.
THANKS FOR YOUR HELP <3