|
-
Jun 30th, 2005, 04:34 AM
#1
Thread Starter
New Member
how to call .dll
i'm a beginner on vb.net and i don't know how to call .dll
please help me find the solution
-
Jun 30th, 2005, 04:35 AM
#2
Re: how to call .dll
Right click References in solution explorer. Add Reference, and browse to your DLL.
-
Jun 30th, 2005, 04:53 AM
#3
Re: how to call .dll
What kind of DLL do you want to call, a DLL that you created, or one of the Windows API DLLs?
I don't live here any more.
-
Jun 30th, 2005, 06:15 AM
#4
Thread Starter
New Member
Re: how to call .dll
it a dll someone create and i want to use it to solve mathematical problem
-
Jun 30th, 2005, 06:17 AM
#5
-
Jun 30th, 2005, 08:50 PM
#6
Re: how to call .dll
after you try what mendhak said then you can call your dll by instantiating them.
-
Jun 30th, 2005, 08:56 PM
#7
Lively Member
Re: how to call .dll
Perhaps we should also explain to him how to create a dll? I think we should...
-
Jun 30th, 2005, 09:03 PM
#8
Re: how to call .dll
i think we shouldn't. He already ask how to call a .dll then it implies he already know what he's doing.
-
Jun 30th, 2005, 09:06 PM
#9
Lively Member
Re: how to call .dll
Well im curious about how you instantiate a .dll?
-
Jun 30th, 2005, 09:13 PM
#10
Re: how to call .dll
instantiating a .dll is just like instantiating a form.
VB Code:
imports mydll <---it is your dll
'in your form load
'for example you have a class name walk to your mydll
dim w as new walk()
w.speed <----your procedure speed under your class walk
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|