Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Struct.vcx cMembers
Message
General information
Forum:
Visual FoxPro
Category:
Third party products
Miscellaneous
Thread ID:
00546561
Message ID:
00547229
Views:
16
My guess, and again, this is only a guess, is that you will need to create a ADDR_REC class (similar to WIN32_FIND_DATA in WinStruct.vcx) and define ADDR_REC in the getcmemebers method with something like:
Return ;
	"TCHAR 0c1:detail_code," + ;
	"TCHAR 0c6:zip_code," +;
	"TCHAR 0c11:update_key," +;
        "TCHAR 0c1:action_code" +;
        all the other memebers of ADDR_REC
Then, You will create another class on the getcmembers of this new class you will input:
Return ;
	"ADDR_REC o:element1," +;
	"ADDR_REC o:element1," +;
        ...
	"ADDR_REC o:element10" 
Although here the 10 elements are listed separated (instead of an array like in stack[10]) I think it won't matter, since what in fact you need is a buffer to hold 10 elements of type ADDR_REC.

Keep in mind, though, that I am not very good at working with this stuff. Perhaps there are other much simpler ways to define what you need than what I am proposing here.
Hector Correa
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform