Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can't run the program in C++BuilderX

Status
Not open for further replies.

rs1249

Programmer
Apr 12, 2005
2
GB
Can anybody help me to fix this thing. I am trying to use Borland C++BuilderX V1.0 to run a program called application1. But every time, when I trying to click the "Run Project" button, I also get a message saying " Application1.exe has encountered a problem and needs to close." The message you normally get from windowsXP when your application crashes.

Then I tried the debugger, it too doesn't start but instead, I get warning message:"Windows - Application error
The application failed to initialise properly (0xc000007b). click on ok to terminate the application." Even the most simple program like:

#include <stdio.h>

int main()
{
printf("Hello World");
return 0;
}

couldn't start. Can anybody tell me how I fix this?
 
I'm not familar with BCBX so this may not help. Which compiler option are you using?


James P. Cottingham
-----------------------------------------
To determine how long it will take to write and debug a program, take your best estimate, multiply that by two, add one, and convert to the next higher units.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top