Hi,
I have a program without a windows form that I use as a DLL in other programs.
This works fine but now I want to use a new sub in the DLL using a listbox like this :
Public sub AddToListbox(Byval lb as Listbox, Byval Grid(,) as integer)
......
end sub
But mentioning the listbox gives a error.
The program do not recognize the listbox
What can I do?
(It is clear that when I want to use the sub in the DLL my program shall contain a listbox).
Thanks for any response.
.
I have a program without a windows form that I use as a DLL in other programs.
This works fine but now I want to use a new sub in the DLL using a listbox like this :
Public sub AddToListbox(Byval lb as Listbox, Byval Grid(,) as integer)
......
end sub
But mentioning the listbox gives a error.
The program do not recognize the listbox
What can I do?
(It is clear that when I want to use the sub in the DLL my program shall contain a listbox).
Thanks for any response.
.