|
: Project booksManeeger.exe raised exception class EPrinter with message 'printing in pro
:
: gress.'Process stopped. Use Step or Run to continue.
:
위의 Error는 다음과 같은 이유로 발생하는 것같습니다.
아래 소스중
if (!PrintDialog1->Execute())
return;
이 문장이후 프린터 시작후 프린트가 끝나기전에 다시 아래에서
if (!PrintDialog1->Execute())
return;
와 같이 함으로 발생하는 것같습니다.
두번째 나오는 아래 문장을 지워보시죠!
if (!PrintDialog1->Execute())
return;
수고하세요.
|