Just a quick question, gentlemen,
i try to get the UBOUND of a given ARAY in a structure like this:
[code]
TYPE myStruct
lArray(5) AS DWORD
END TYPE
[code]
I use a pointer to acces the structure like:
[code]
Local ptmyStruct AS myStruct PTR
[code]
Now I want to get the UBOUND of lArray.
Thanks
Joerg
i try to get the UBOUND of a given ARAY in a structure like this:
[code]
TYPE myStruct
lArray(5) AS DWORD
END TYPE
[code]
I use a pointer to acces the structure like:
[code]
Local ptmyStruct AS myStruct PTR
[code]
Now I want to get the UBOUND of lArray.
Thanks
Joerg
Comment