Contributor
21Apr2006,20:39   #11
lieweffect's Avatar
Quote:
Originally Posted by shabbir
This is not meant for working in the windows based compilers. You try compiling it in Turbo C3 or Turbo C 2 Dos based compilers.
I don't have Turbo C3 or C2
Go4Expert Founder
21Apr2006,20:47   #12
shabbir's Avatar
Then you can try the bloodshed compiler and it works but you probably need to be removing the clrscr.
Contributor
21Apr2006,20:56   #13
lieweffect's Avatar
Quote:
Originally Posted by shabbir
Then you can try the bloodshed compiler and it works but you probably need to be removing the clrscr.
Yes, I'm using the Bloodshed Dev-C++ to compile.May I know the program can run on your system?
Go4Expert Founder
22Apr2006,00:02   #14
shabbir's Avatar
I have compiled the program and emailed you.
Contributor
22Apr2006,07:08   #15
lieweffect's Avatar
Quote:
Originally Posted by shabbir
I have compiled the program and emailed you.
The program totally cannot run.
But anyway Thank You first

Last edited by lieweffect; 22Apr2006 at 07:19..
Go4Expert Founder
22Apr2006,14:38   #16
shabbir's Avatar
Thats because probably you dont have the BGI graphics at the correct location. If you see the source code it has
Code: C
initgraph(&driver,&mode,"c:\\tc\\bgi");     //initialize graphics mode
 
and that I edited to point to my location of bgi graphics which was
Code: C
initgraph(&driver,&mode,"c:\\turboc3\\bgi");    //initialize graphics mode
 
and thats probably why it does not run on your system

Thanks
Shabbir
Contributor
22Apr2006,20:58   #17
lieweffect's Avatar
There was some bug in the program
After I add a customer profile and want to view the profile. It give nothing to me.
It is any mistake in the database, because it was no record after I added
Contributor
22Apr2006,21:07   #18
lieweffect's Avatar
Oh..I knew where is the mistake...
The file that open and save is different location
Contributor
22Apr2006,21:16   #19
lieweffect's Avatar
The program can run properly now.
But there have something that is not in logic.
How to make some error detection
For instance the time column is only accept the number.
Yes I have change the data type into int(original is char).
But error after compile
Go4Expert Founder
22Apr2006,22:21   #20
shabbir's Avatar
Quote:
Originally Posted by lieweffect
Yes I have change the data type into int(original is char).
But error after compile
Whats the error its giving.