You are not logged in. You can browse in the PowerBASIC Community, but you must click Login (top right) before you can post. If this is your first visit, check out the FAQ or Sign Up.
Type MyType DWord
Long1 As Long
String4 As String * 5
Integer1 As Integer
Long2 As Long
String12 As String * 9
End Type
PB:
Function GetUdt(UDT as MyType)Export as long
..your code
End function
VB:
Dim P as MyType
Call GetUdt(P)
A good advice dealing with VB.
Plan your UDT. Instead of String*5 use String*8
Use long instead of integer.
Never have two Integers after eachother in the UDT
Type MyType DWord
A as integer
B as integer
C as string *5
End type
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment