View Single Post
  #1 (permalink)  
Old 08-29-2008, 1:56 PM
rrrprogrammer rrrprogrammer is offline
VB.NET Forum Newbie
.NET Framework: .NET 2.0 (VS 2005)
 
Join Date: Aug 2008
Posts: 7
Reputation: 0
rrrprogrammer is on a distinguished programming path ahead
Default how to call DLL in VB.NET

In VB6, I used CreateObject function to invoke a DLL application

I wrote a DLL application in VB.NET. How can I invoke DLL application in VB.NET??


In VB 6
HelloWorld.dll

dim objHelloWorld as object
objHelloWorld= CreateObject("HelloWorld.DisplayForm")
Reply With Quote