Click here to Skip to main content
15,895,557 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Running regsvr32.exe from CreateProcess Pin
arcticbrew16-Feb-07 9:07
arcticbrew16-Feb-07 9:07 
Questioninherts a textbox Pin
luke.orun14-Feb-07 10:20
luke.orun14-Feb-07 10:20 
AnswerRe: inherts a textbox Pin
TwoFaced14-Feb-07 13:11
TwoFaced14-Feb-07 13:11 
GeneralRe: inherts a textbox Pin
luke.orun14-Feb-07 22:02
luke.orun14-Feb-07 22:02 
QuestionPreventing changing tabs on a Tabcontrol Pin
dptalt14-Feb-07 9:51
dptalt14-Feb-07 9:51 
AnswerRe: Preventing changing tabs on a Tabcontrol Pin
nlarson1115-Feb-07 8:24
nlarson1115-Feb-07 8:24 
QuestionReading multiple MS Word files Pin
Morupisi Morupisi14-Feb-07 9:20
Morupisi Morupisi14-Feb-07 9:20 
QuestionDLL call from VB6 Pin
Renato Carvalho14-Feb-07 7:56
Renato Carvalho14-Feb-07 7:56 
I have the following code in a DLL, and it must be called from a VB6 application.

That's the code:

#######################################

#include

struct tpteste
{
int i;
};

void __stdcall test( tpteste **l )
{
tpteste *t = new tpteste[4];

t[0].i = 99;
t[1].i = 98;
t[2].i = 97;
t[3].i = 96;

*l = t;
}

void __stdcall doNothing( void )
{
tpteste *w = NULL;
test(&w);
}

#######################################

I need to discover how to call the test function from VB passing a pointer-to-pointer (or any workaround).
If someone can help... thanks in advance.
AnswerRe: DLL call from VB6 Pin
Dave Kreskowiak15-Feb-07 4:28
mveDave Kreskowiak15-Feb-07 4:28 
QuestionArray Stuff Pin
Cedrickdeorange14-Feb-07 6:34
Cedrickdeorange14-Feb-07 6:34 
AnswerRe: Array Stuff Pin
andyharman14-Feb-07 6:46
professionalandyharman14-Feb-07 6:46 
AnswerRe: Array Stuff Pin
Guffa14-Feb-07 6:51
Guffa14-Feb-07 6:51 
AnswerRe: Array Stuff Pin
The ANZAC14-Feb-07 10:29
The ANZAC14-Feb-07 10:29 
QuestionSubscript out of range Pin
TheJudeDude14-Feb-07 6:10
TheJudeDude14-Feb-07 6:10 
QuestionExcel -- Using oledb -- getting dbnull when it's not Pin
nlarson1114-Feb-07 5:18
nlarson1114-Feb-07 5:18 
AnswerRe: Excel -- Using oledb -- getting dbnull when it's not Pin
Marcus J. Smith14-Feb-07 5:40
professionalMarcus J. Smith14-Feb-07 5:40 
GeneralRe: Excel -- Using oledb -- getting dbnull when it's not Pin
nlarson1114-Feb-07 5:54
nlarson1114-Feb-07 5:54 
Questionadding button in dataGrid Pin
costavo14-Feb-07 4:05
costavo14-Feb-07 4:05 
AnswerRe: adding button in dataGrid [modified] Pin
Marcus J. Smith14-Feb-07 4:06
professionalMarcus J. Smith14-Feb-07 4:06 
QuestionHow to extract a zip using vb.net Pin
Navas.M14-Feb-07 3:27
Navas.M14-Feb-07 3:27 
AnswerRe: How to extract a zip using vb.net Pin
andyharman14-Feb-07 6:44
professionalandyharman14-Feb-07 6:44 
QuestionRedundancy seems to be my game to avoid Null Reference and Index Out of Range Exceptions - HELP! Pin
Marcus J. Smith14-Feb-07 2:16
professionalMarcus J. Smith14-Feb-07 2:16 
AnswerRe: Redundancy seems to be my game to avoid Null Reference and Index Out of Range Exceptions - HELP! Pin
Colin Angus Mackay14-Feb-07 5:02
Colin Angus Mackay14-Feb-07 5:02 
Questionhelp for MenuItem for VB.Net Compact Framework Pin
danaelx14-Feb-07 0:37
danaelx14-Feb-07 0:37 
Questionwhat is handle in .net Pin
saravanaks13-Feb-07 23:59
saravanaks13-Feb-07 23:59 

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.