Click here to Skip to main content
15,887,135 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Regarding Winsock control Pin
Dave Kreskowiak15-May-09 2:25
mveDave Kreskowiak15-May-09 2:25 
QuestionUsing DBCombo on VB2008 Pin
Ener Leumas13-May-09 22:00
Ener Leumas13-May-09 22:00 
AnswerRe: Using DBCombo on VB2008 Pin
Dave Kreskowiak14-May-09 1:55
mveDave Kreskowiak14-May-09 1:55 
GeneralRe: Using DBCombo on VB2008 Pin
Ener Leumas14-May-09 18:32
Ener Leumas14-May-09 18:32 
QuestionSimilar Program Pin
vijay248213-May-09 21:31
vijay248213-May-09 21:31 
GeneralRe: Similar Program Pin
Steven J Jowett13-May-09 22:42
Steven J Jowett13-May-09 22:42 
Questionhow to call c++ DLL in vb 6 Pin
zhiyuan1613-May-09 16:54
zhiyuan1613-May-09 16:54 
AnswerRe: how to call c++ DLL in vb 6 Pin
Dave Kreskowiak13-May-09 19:19
mveDave Kreskowiak13-May-09 19:19 
There are different types of .DLL files. If it's a COM-based .DLL, you can add a reference to it, then instantiate the classes in it using Dim:
Dim x As New SomeClassInLibrary


If it's a library .DLL, then you have to use the Declare statement to setup the call. But, in order to use this, you MUST have the documentation on the functions you want to use so you can properly write the parameter information into the Declare. Without it, you're guessing and are going to get it wrong.


A guide to posting questions on CodeProject[^]



Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007, 2008




GeneralRe: how to call c++ DLL in vb 6 [modified] Pin
zhiyuan1613-May-09 19:57
zhiyuan1613-May-09 19:57 
AnswerRe: how to call c++ DLL in vb 6 Pin
Baran M13-May-09 19:22
Baran M13-May-09 19:22 
GeneralRe: how to call c++ DLL in vb 6 Pin
zhiyuan1613-May-09 20:01
zhiyuan1613-May-09 20:01 
GeneralRe: how to call c++ DLL in vb 6 Pin
Dave Kreskowiak14-May-09 1:53
mveDave Kreskowiak14-May-09 1:53 
GeneralRe: how to call c++ DLL in vb 6 Pin
zhiyuan1614-May-09 4:39
zhiyuan1614-May-09 4:39 
GeneralRe: how to call c++ DLL in vb 6 Pin
Dave Kreskowiak14-May-09 7:06
mveDave Kreskowiak14-May-09 7:06 
GeneralRe: how to call c++ DLL in vb 6 Pin
zhiyuan1614-May-09 16:04
zhiyuan1614-May-09 16:04 
GeneralRe: how to call c++ DLL in vb 6 Pin
Dave Kreskowiak14-May-09 17:50
mveDave Kreskowiak14-May-09 17:50 
GeneralRe: how to call c++ DLL in vb 6 Pin
zhiyuan1614-May-09 18:06
zhiyuan1614-May-09 18:06 
GeneralRe: how to call c++ DLL in vb 6 Pin
Dave Kreskowiak15-May-09 2:22
mveDave Kreskowiak15-May-09 2:22 
AnswerRe: how to call c++ DLL in vb 6 Pin
Christian Graus14-May-09 3:06
protectorChristian Graus14-May-09 3:06 
QuestionAssembly is being destroyed to quickly. Pin
Jon_Boy13-May-09 9:26
Jon_Boy13-May-09 9:26 
AnswerRe: Assembly is being destroyed to quickly. Pin
Dave Kreskowiak13-May-09 9:59
mveDave Kreskowiak13-May-09 9:59 
GeneralRe: Assembly is being destroyed to quickly. Pin
Jon_Boy14-May-09 2:23
Jon_Boy14-May-09 2:23 
GeneralRe: Assembly is being destroyed to quickly. Pin
Jon_Boy14-May-09 3:19
Jon_Boy14-May-09 3:19 
QuestionMdi form and ToolStripContainer Pin
Samir Ibrahim13-May-09 4:27
Samir Ibrahim13-May-09 4:27 
AnswerRe: Mdi form and ToolStripContainer Pin
Dave Kreskowiak13-May-09 5:29
mveDave Kreskowiak13-May-09 5:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.