I have developed a graphic program on a desktop system. But when I tried to run it on the hp compaq laptop it's not getting executed. I developed it using Turbo C. Then i tried writing a simple graphic program in Turbo C on the laptop, but the problem I am getting is in 'initgraph' statement it is unable to detect the driver.

Can you please tell me what might be the problem?

link|improve this question

38% accept rate
5  
Use something from atleast the recent century. – shoosh Mar 25 '10 at 5:44
2  
+1 for creating the tag for the Borland Graphics Interface. I remember the early 90s! – quixoto Aug 8 '10 at 16:25
Oh yes! Are you trying to run it in a Super VGA mode? – valdo Oct 31 '10 at 14:09
feedback

4 Answers

Turbo-C, much like my first girlfriend, will always have a special place in my heart.

But its time to let her go. She's not the same girl you remember, and just cannot keep up with modern times. She may have been hip and cool at the time, but she can't handle modern trends at all. Even 32-bit memory is a real challenge for her. You're a better man now, and deserve a real woman. Go find yourself a good Visual Studio, or a nice GCC environment.

I'm not saying you have to forget Turbo-C. I know she was your first and will always be magical, but put her pictures in a shoebox, and don't take them out more than once a year. Its time to move on, buddy.

link|improve this answer
feedback

It sounds like it can't detect what kind of graphics card you have. Try setting the graphdriver parameter to either VGA or IBM8514.

link|improve this answer
Can you please guide me, how to set the graphics driver. – PrithviRaj Mar 25 '10 at 5:53
Edit your question to show your call to initgraph and maybe I can help. – Gabe Mar 25 '10 at 5:59
Ok:) This is the statement i am using: initgraph(&gdriver, &gmode, "") where gdriver is initialized to DETECT. – PrithviRaj Mar 25 '10 at 6:12
Just try using VGA or IBM8514 instead of DETECT. – Gabe Mar 25 '10 at 6:37
Ok thank you i will just try it now. – PrithviRaj Mar 25 '10 at 6:53
feedback

In Turbo c goto options->Linker->Liabraries-> add Graphics Library. It might help

link|improve this answer
feedback

The Steps to make your TC able to run graphics program are as follows:

  1. copy CGA.BGI and EGAVGA.BGI files from TC\BGI folder and paste them in TC\BIN directory.

  2. Open TC by clicking on TC\BIN\TC.EXE.

  3. Click on Options -> Linker -> Libraries .

  4. Select the Graphics Library option and Press OK.

  5. Now you can compile your graphics program with Zero Compilation Errors.

Thanks!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.