|
-
January 28th, 1999, 12:59 PM
#1
Can VB handle structures and pointers like VC
Is there anyway in VB that you can define a String of Data (Buffer) and reference that data using a structure (Type)
with a pointer?
VC Example:
struct EntryStruct
{
char szFldName [50];
int nFldNumber;
};
char szBuffer [500];
char szName [50];
EntryStruct* pPtr;
pPtr = (EntryStruct*) szBuffer;
szName = pPtr.szFldName;
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|