Click here to Skip to main content
15,906,626 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Need help to make pop3 server Pin
Dave Kreskowiak19-Apr-07 4:54
mveDave Kreskowiak19-Apr-07 4:54 
Questionkeydown Pin
eagertolearn19-Apr-07 3:29
eagertolearn19-Apr-07 3:29 
AnswerRe: keydown Pin
Dave Kreskowiak19-Apr-07 3:39
mveDave Kreskowiak19-Apr-07 3:39 
GeneralRe: keydown Pin
eagertolearn19-Apr-07 4:28
eagertolearn19-Apr-07 4:28 
GeneralRe: keydown Pin
Dave Kreskowiak19-Apr-07 4:32
mveDave Kreskowiak19-Apr-07 4:32 
GeneralRe: keydown Pin
eagertolearn19-Apr-07 5:26
eagertolearn19-Apr-07 5:26 
QuestionCalling Dll C++ functions from Visual Basic 6 Pin
Kiske19-Apr-07 3:00
Kiske19-Apr-07 3:00 
AnswerRe: Calling Dll C++ functions from Visual Basic 6 Pin
Dave Kreskowiak19-Apr-07 3:37
mveDave Kreskowiak19-Apr-07 3:37 
Try changing the Declare to:
Private Declare Function Initialize Lib "callrexApi.dll" (ByRef inszStatusLoc As String) As Long

The full path to the .DLL was removed to allow for having the .DLL file in the same folder as the application .EXE without knowing what that path is ahead of time.

The Integer at the end was changed to a Long because your C++ header shows that it's returning an int, which is a 32-bit signed integer. In VB6, the equivilent datatype is a Long, not an Integer. Integer in VB6, IIRC, is a 16-bit signed integer.

My VB6 is really rusty; I haven't used it in about 6 years.


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


GeneralRe: Calling Dll C++ functions from Visual Basic 6 Pin
Kiske19-Apr-07 3:54
Kiske19-Apr-07 3:54 
GeneralRe: Calling Dll C++ functions from Visual Basic 6 Pin
Dave Kreskowiak19-Apr-07 4:41
mveDave Kreskowiak19-Apr-07 4:41 
QuestionGraphics in VB Pin
Kumaran21cen19-Apr-07 2:46
Kumaran21cen19-Apr-07 2:46 
AnswerRe: Graphics in VB Pin
Dave Kreskowiak19-Apr-07 4:43
mveDave Kreskowiak19-Apr-07 4:43 
Questionstill cant do it(add to database) Pin
peteyshrew19-Apr-07 2:22
peteyshrew19-Apr-07 2:22 
AnswerRe: still cant do it(add to database) Pin
peteyshrew19-Apr-07 2:32
peteyshrew19-Apr-07 2:32 
GeneralRe: still cant do it(add to database) Pin
Dave Kreskowiak19-Apr-07 3:31
mveDave Kreskowiak19-Apr-07 3:31 
GeneralRe: still cant do it(add to database) Pin
Psycho-*Coder*-Extreme22-Apr-07 8:36
Psycho-*Coder*-Extreme22-Apr-07 8:36 
AnswerRe: still cant do it(add to database) Pin
klaydze19-Apr-07 3:19
klaydze19-Apr-07 3:19 
QuestionASP.NET Connection with sql server 2005. Pin
Sujit Mandal19-Apr-07 2:02
Sujit Mandal19-Apr-07 2:02 
AnswerRe: ASP.NET Connection with sql server 2005. Pin
kubben19-Apr-07 2:05
kubben19-Apr-07 2:05 
GeneralRe: ASP.NET Connection with sql server 2005. Pin
Sujit Mandal19-Apr-07 2:16
Sujit Mandal19-Apr-07 2:16 
GeneralRe: ASP.NET Connection with sql server 2005. Pin
kubben19-Apr-07 2:18
kubben19-Apr-07 2:18 
GeneralRe: ASP.NET Connection with sql server 2005. Pin
Sujit Mandal19-Apr-07 2:24
Sujit Mandal19-Apr-07 2:24 
GeneralRe: ASP.NET Connection with sql server 2005. Pin
kubben19-Apr-07 2:31
kubben19-Apr-07 2:31 
GeneralRe: ASP.NET Connection with sql server 2005. Pin
Sujit Mandal19-Apr-07 2:42
Sujit Mandal19-Apr-07 2:42 
GeneralRe: ASP.NET Connection with sql server 2005. Pin
Sujit Mandal19-Apr-07 2:54
Sujit Mandal19-Apr-07 2:54 

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.