Click here to Skip to main content
15,918,003 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Accessing a variable from another class Pin
sugumar6-Jul-04 1:20
sugumar6-Jul-04 1:20 
GeneralRe: delete and free Pin
#realJSOP6-Jul-04 0:13
professional#realJSOP6-Jul-04 0:13 
GeneralRe: delete and free Pin
Roger Stoltz6-Jul-04 0:56
Roger Stoltz6-Jul-04 0:56 
GeneralRe: delete and free Pin
xcavin6-Jul-04 1:25
xcavin6-Jul-04 1:25 
GeneralHelp from VB programmers Pin
#realJSOP5-Jul-04 23:34
professional#realJSOP5-Jul-04 23:34 
GeneralRe: Help from VB programmers Pin
Duncan Edwards Jones6-Jul-04 0:15
professionalDuncan Edwards Jones6-Jul-04 0:15 
GeneralRe: Help from VB programmers Pin
#realJSOP6-Jul-04 0:56
professional#realJSOP6-Jul-04 0:56 
GeneralRe: Help from VB programmers Pin
Duncan Edwards Jones6-Jul-04 1:47
professionalDuncan Edwards Jones6-Jul-04 1:47 
VB doesn't use header files (that I know of) so that reference kinda confuses me.

No - but you can convert the C++ function def from the header file into a VB import declaration.

e.g.:-
<br />
/* dbgHelp.h */<br />
BOOL SymGetSearchPath(<br />
  HANDLE hProcess,<br />
  PSTR SearchPath,<br />
  DWORD SearchPathLength);<br />


becomes
<br />
Public Declare Function SymGetSearchPath Lib "dbghelp.dll" ( _<br />
        ByVal hProcess As Long, _<br />
        ByVal SearchPath As String, _<br />
        ByVal SearchPathLength As String) As Long<br />



'--8<------------------------
Ex Datis:
Duncan Jones
Merrion Computing Ltd
GeneralRe: Help from VB programmers Pin
anonymous20056-Jul-04 0:53
anonymous20056-Jul-04 0:53 
GeneralRe: Help from VB programmers Pin
#realJSOP6-Jul-04 1:20
professional#realJSOP6-Jul-04 1:20 
GeneralRe: Help from VB programmers Pin
anonymous20056-Jul-04 1:41
anonymous20056-Jul-04 1:41 
GeneralRe: Help from VB programmers Pin
Michael P Butler6-Jul-04 1:29
Michael P Butler6-Jul-04 1:29 
GeneralRe: Help from VB programmers Pin
#realJSOP6-Jul-04 2:14
professional#realJSOP6-Jul-04 2:14 
GeneralRe: Help from VB programmers Pin
#realJSOP6-Jul-04 2:54
professional#realJSOP6-Jul-04 2:54 
GeneralRe: Help from VB programmers Pin
Michael P Butler6-Jul-04 3:57
Michael P Butler6-Jul-04 3:57 
GeneralRe: Help from VB programmers Pin
#realJSOP6-Jul-04 4:53
professional#realJSOP6-Jul-04 4:53 
GeneralRe: Help from VB programmers Pin
#realJSOP6-Jul-04 6:40
professional#realJSOP6-Jul-04 6:40 
GeneralRe: Help from VB programmers Pin
Michael P Butler6-Jul-04 8:31
Michael P Butler6-Jul-04 8:31 
GeneralRe: Help from VB programmers Pin
#realJSOP6-Jul-04 8:48
professional#realJSOP6-Jul-04 8:48 
GeneralRe: Help from VB programmers Pin
Michael P Butler6-Jul-04 9:03
Michael P Butler6-Jul-04 9:03 
GeneralRe: Help from VB programmers Pin
#realJSOP6-Jul-04 9:22
professional#realJSOP6-Jul-04 9:22 
GeneralRe: Help from VB programmers Pin
Michael P Butler7-Jul-04 3:30
Michael P Butler7-Jul-04 3:30 
GeneralRe: Help from VB programmers Pin
#realJSOP7-Jul-04 3:33
professional#realJSOP7-Jul-04 3:33 
GeneralRe: Help from VB programmers Pin
Michael P Butler7-Jul-04 8:08
Michael P Butler7-Jul-04 8:08 
GeneralRe: Help from VB programmers Pin
#realJSOP7-Jul-04 16:06
professional#realJSOP7-Jul-04 16:06 

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.