Hi Everyone.
I have an list of string and want to pass into the invoke code VBA as attached pictured.
But it has something wrong so run not correct.
It has any incorrect point ?
Thanks in advance!
Hi Everyone.
I have an list of string and want to pass into the invoke code VBA as attached pictured.
But it has something wrong so run not correct.
It has any incorrect point ?
Thanks in advance!
Hi @Mr.H ,
Your passing list of string so you have to use
List(Of String) instead of string in function. Please try. Thanks.
Hi Bro.
How to pass it into list(of string) into the invoke code??
Could you pls example.
Thanks you!
Sub Main(List_Jump_Range As List(Of String) ) give like this and try. I never used invoke VBA code. I have used invoke code and write vb code into it.
Thanks you Bro. But it not correct…
Hi @Mr.H ,
Have you Checked the below post :
Thanks you Bro!
Replying to your mail
declare new variable test
assign
test = String.Join(“&&”,Jump_Range)
change entryMethodParameters to {test}
change Vba…
sub main(list_jump_range as string)
Dim Result() As String
Result = Split(list_jump_range, "&&")
Dim item as string
For Each item in Result
'msgbox item
Next item
....
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.