Jump to content
Sign in to follow this  
Newbee

Newbie Question 1

Recommended Posts

Apologies I last used C++ Builder 5 and trying to get back to date, the learning curve is much harder than I thought.

When typing how do I get useful information? 

My example below only offers templates when I expect one option to be Count 

 

image.thumb.png.9fef00a2ade5f6006f74ac6561b02876.png

Share this post


Link to post

Hi Newbee, I wonder what version you are using here? Embarcadero have tried various experiments with the auto completion type editing functionality in recent editions. It is only in 12.1 - with reasonable integration of the visual assists components from Whole Tomato that things are working well. I find 12.1 auto completion fast and reliable. 

Share this post


Link to post

...Also: which compiler are you using. C++ "classic" is the 32 bit compiler developed by Borland but basically frozen quite some number of years ago. The recommended compilers are Clang32 for 32 bit targets and Clang64 for 64bit targets. 12.1 also introduced a new tool chain for clang 64bit which is expected to replace the earlier 64bit system (this is currently called clang64 modern) but in 12.1 it has some minor limitations which may make it not your first choice if you are still finding your way around. These limitations are understood by Embarcadero and are expected to be removed in next version or two with the goal being to replace the clang64 approach with this "clang 64 modern" approach.

You select the compiler used for 32 bit applications using the menu Project | Options and then under Builiding | C++ compiler there is an entry "Use classic borland compiler" (I suggest you set this to "false").

You select the compiler used for 64 bit applications using the "target platform" in the project tree.

Share this post


Link to post

Try a build (in Debug mode) and after the error (you didn't complete the line..) then try again "->" 

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×