-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please add examples for C++ Builder #61
Comments
Any volunteer out there that creates a sample project for C++ Builder? |
I also try to make project in c++ like for delphi. All goes OK with compiling and linking. but when i run, i got Ihave C++ Builder 10.1.2 Berlin (Update2). |
About the error "An error occurred while trying to load the Ribbon resource "APPLICATION": Unspecified error". This is a bug in the 32 bit version of CBuilder. It is necessary to remove UIRibbonPackage.bpl from the list of packages for dynamic linking (Packages/Runtime Packages). |
For the 64 bit version there is an unpleasant problem. The compiler requires 64 bit library UIRibbonPackage.bpi, which is not. If you clean the XML project file from UIRibbonPackage.bpi, then compiler requires 64 bit library UIRibbonPackage.a If you select "remove this reference" in the pop-up window, the compilation will be successful and the program will start. However, it is very inconvenient to do at each compilation. |
I added the C++ Builder link demand to a source file. Does the latest GitHub master improve this situation? |
About the error "An error occurred while trying to load the Ribbon resource "APPLICATION": Unspecified error". void __fastcall TForm1::FormCreate(TObject *Sender) |
I have downloaded this package from GetIt in C++ Builder 10.1 Berlin. But I don't have enough example to understand how to use it.
The text was updated successfully, but these errors were encountered: