C++Builder Community Edition - c++builder

I have installed the C++Builder Community Edition and I can only create Delphi projects not C++. Is/Are there any additional tool(s) should be installed?
Note: from Help>About I see :Installed update Delphi 10.2 and C++ Builder 10.2 Update 3

Community Edition offers Delphi and C++ Builder separately. There is no RAD Studio Community Edition that offers both.

You might download delphi installation package rather than C++ builder community installation package.
Embarcadero didn't release combined installation package includes both programming languages.

Related

Missing api-ms-win-crt-runtime-l1-0.dll when launching Delphi IDE

This message appears when I launch Delphi 2009 Enterprise. I installed Windows Updates today (Windows 7 Professional) and updated TortoiseSVN to 1.9.
An article related to a FTP server points to a required installation of Visual Studio 2015 redistributables.
Also related: Win 7, 64 bit, dll problems
Did anybody experience the same and found a fix?
Installed experts:
* GExperts
* IDEFixpack
* DDevextensions
If you have installed the new TortoiseSVN 1.9 then it may be the cause. It requires the Visual C++ Redistributable for Visual Studio 2015. This is mentioned on the Tortoise 1.9 download page under Missing DLLs.
Here is a discussion on the TortoiseSVN discussion forum.

Why can't I start WampServer in Windows 2003 server sp2?

here is a problem I meet. I download and installed WampServer, it could not be started. After clicking, it started without any error message but ended immediately because
there was an WampServer icon in the right-down corner (just besides input icon and time) and disappeared within less than 1 second automatically. No process of wamp can be found when using ctrl+alt+del.
I suppose there is no problem in wampserver software itself since it can be installed in other computers successfully. Previous searching indicated I need to install visual C++ 2008 and 2010 but it seems still the same.
I am going crazy about this for a few days. Many thanks for you if there can be any suggestion or some similar cases.
Please make sure you have the latest version of all of these Microsoft C/C++ Redistributable runtime libraries. You dont need the whole compiler, just these C/C++ runtime libraries.
The 2008 Redist (32bit) is used by wampmanager even if you installed the 64bit WAMPServer.
The 2010 Redist is used by some versions of Apache ( depending on compiler used ).
The 2012 Redist is used by some versions of Apache ( depending on compiler used ).
FOR WAMP 32bit
Microsoft Visual C++ 2008 SP1 Redistributable Package (x86)
Microsoft Visual C++ 2010 SP1 Redistributable Package (x86)
If you are using WampServer2.4/2.5 32bit and therefore Apache 2.4.x
Microsoft Visual C++ 2012 is required
And select vcredist_x86.exe
FOR WAMP 64bit
Microsoft Visual C++ 2008 SP1 Redistributable Package (x86)
>> Yes you need the x86 Package regardless as wampmanager uses this <<
Microsoft Visual C++ 2008 Redistributable Package (x64)
Microsoft Visual C++ 2010 SP1 Redistributable Package (x64)
If you are using WampServer2.4/2.5 64bit
Microsoft Visual C++ 2012
And select vcredist_x64.exe
the authors state directly on the download page (http://www.wampserver.com/en/):
Wampserver 2.5 is not compatible with Windows XP, neither with SP3,
nor Windows Server 2003
When I tried it, during the install I get the odd, cryptic error popups such as "bin\apache\apache2.4.9\bin\httpd.exe is not a valid Win32 application".
I would recommend doing the manual approach for Win2K3 platforms - sure it's a lot more work, but you can follow an excellent, precise step-by-step recipe here:
http://www.ricocheting.com/how-to-install-on-windows/apache
I've done this approach a dozen times with no complications. If you've never done the "old school way" before, it's a good learning experience. And it would probably be a lot faster overall than struggling with trying to get WampServer working on Win2K3 OS.
Note that in both cases, you'll still need to first install VC 2008 redistributable package (as mentioned above).

Picking The Right OpenCV Build For Windows

I'm trying to make heads and tails of the list of files available for Windows at OpenCV's website.
This is the list at SourceForge (http://sourceforge.net/projects/opencvlibrary/files/opencv-win/2.3/) for v2.3:
OpenCV-2.3.0rc-gpu-support-win32-vs2008.zip
OpenCV-2.3.0rc-win64-vs2010.exe
OpenCV-2.3.0rc-win32-vs2008.exe
OpenCV-2.3.0rc-win-src.zip
I've deduced the following so far:
OpenCV-2.3.0rc-gpu-support-win32-vs2008.zip: The only way to get support for using GPUs.
OpenCV-2.3.0rc-win64-vs2010.exe: Used if you are using Visual Studio 2010 and 64-bit Windows
OpenCV-2.3.0rc-win32-vs2008.exe: Used if you are using VS 2008 and 32-bit Windows
OpenCV-2.3.0rc-win-src.zip: Source code for OpenCV on Windows (but might not support GPUs).
I'm left with the following questions (assuming that I don't want to compile from the source code):
Which version should I pick if want to use Visual Studio 2008, OpenCV, and a 64-bit version of Windows?
Which version should I pick for Visual Studio 2010, OpenCV, and 32-bit Windows?
If you notice the filenames they contain the letters rc which stand for release candidate. I would not recommend using this version just yet. Grab OpenCV 2.2 if you don't need specific features from the 2.3.
There's a README file on that page explaining what's inside each package. All v2.2 packages are 32-bit.
Which version should I pick if want to use Visual Studio 2008, OpenCV, and a 64-bit version of Windows?
You will have to rebuild OpenCV from the sources. Download OpenCV-2.2.0-win.zip or OpenCV-2.3.0rc-win-src.zip for the 2.3 version.
Which version should I pick for Visual Studio 2010, OpenCV, and 32-bit Windows?
For the 2.3 version, you will also have to rebuild OpenCV from the sources, OpenCV-2.3.0rc-win-src.zip. For the 2.2 version, there's the package OpenCV-2.2.0-win32-vs2010.exe, which includes OpenCV source code, documentation, samples and pre-compiled 32-bit binaries.

How to load Firebird 2.1.X fbclient.dll on Windows XP wihout installing Microsoft C++ 2005 Redistributable (vcredist_x86.exe)?

Using fbclient.dll in Firebird 2.1.X in fresh install Windows XP that never install with Microsoft C++ 2005 Redistrubable will cause problem.
I wish to deploy my application that contain fbclient.dll and all related Microsoft C++ 2005 redistributable libraries without installing the redistributable libraries. Can I do that? I am running the application in limited account. Install the VC++ redistributable is not an option here.
My application is developed with Delphi using LoadLibrary to load the fbclient.dll
It's possible to just copy the MSVC runtime into your application directory.
However, a standard installer would be better for automatic updates. And the installer will run under an administrator account, so your limited account is not a problem.
As i remenber (havent code near me), you can use manifest files.
A little hint can be seen here: http://www.firebirdnews.org/?p=2248
http://www.destructor.de/firebird/minimumclient.htm.
Relating posts:
Mixed Mode Library and CRT Dependencies - HELP
Visual Studio 2005 security updates and CRT DLL versions in manifest

Installing Rad Studio 2007 and Rad Studio 2010 in same machine

I want to install Rad Studio 2010 on a machine that already has installed Rad Studio 2007,
There is some compatibility problem?
thanks in advance, Bye.
See this answer from Nick Hodges.
There is no problem with installing a newer version of Delphi/RAD Studio on a machine that has an older version. As Mason says, the reverse is not necessarily true.
Trying to install an older version of Delphi when a newer version already exists can cause problems. If you have to have both, either put 2007 in a VM or uninstall 2010 and then install the two Delphis in order, which will work just fine.

Resources