Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
C++
Re: Convert C-Builder program to Delphi?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="W. D., post: 1531487"] Hi Folks, Thanks to all those who have been helping me in this struggle to convert this C-code to Delphi! Hopefully, someone has seen this type of 'struct' that looks like a class: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ struct _DBFieldName { char FieldName[40]; }; struct DBFieldNames { uint16 NumFieldNames; _DBFieldName *Names; DBFieldNames() { Names = NULL; } ~DBFieldNames() { delete[] Names; Names = NULL; } }; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Is there similar 'Record' syntax that would work, or should I make this a class, or what???? Thank you so kindly for your assistance! [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
C++
Re: Convert C-Builder program to Delphi?
Top