vb-c++-connection

AMK
Newbie Member
9Sep2006,12:34   #1
AMK's Avatar
c++ dll has exported funtion call such as:
void AccessUnknownBuf(char** cbuffer, int sizeofbuf);
VB does not know about the size of cbuffer beforehand. It has to get the cbuffer and its size from dll. How VB can do this?. somehow it should be accessing dll's memory area...?. seconldy, how to allocate more than 40000 bytes for character string type?.
dim s as string*50000 does not work.
AMK
Newbie Member
9Sep2006,12:36   #2
AMK's Avatar
It is actually like this:
void AccessUnknownBuf(char** cbuffer, int* sizeofcbuffer);
Go4Expert Founder
9Sep2006,14:18   #3
shabbir's Avatar
AccessUnknownBuf should supply the size of the buffer for some default parameter and in VB use the string with SPACE to fill the buffer and pass that as an argument to the function.
AMK
Newbie Member
9Sep2006,20:36   #4
AMK's Avatar
how do you allocate this many mem space to string?.
Dim s as string*50000 (got overflow error).
Go4Expert Founder
10Sep2006,06:02   #5
shabbir's Avatar
Code:
Dim str As String
str = Space(1000)
This will allocate the string with 1000 buffer size by default and this can be used easily with the C++ buffer.
AMK
Newbie Member
10Sep2006,10:38   #6
AMK's Avatar
there is no way that i can access c++ dll's cBuffer content without allocating memory in VB?.
Go4Expert Founder
10Sep2006,11:25   #7
shabbir's Avatar
I dont think so. You are calling a function in a C++ dll and all you can get is the return type of the function or any pointer that you provide are having some data and the second option requires you to have the buffer in VB and pass that to C++ dll.