I recieved a warning error as below
[C++ Warning] HMLP.cpp(4): W8058 Cannot create pre-compiled header: write failed
which was refer to the code below
#pragma hdrstop
After check with help file in Borland C++ Builder 6 the statement was as below
This warning is issued when pre-compiled headers are enabled but the compiler could not generate one, for one of the following reasons:
Reason Explanation
write failed: The compiler could not write to the pre-compiled header file. This is usually due to the disk being full.
which I don't have a problem regarding of disk being full.
Anyone have any idea to overcome the problem. Thank you
Shake