Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Memory Full In Crystal Reports
Message
From
06/03/1998 05:12:48
 
 
To
06/03/1998 03:54:46
General information
Forum:
Visual FoxPro
Category:
Third party products
Miscellaneous
Thread ID:
00082906
Message ID:
00082911
Views:
28
>I have a general field named Logo in company.dbf
>
>Using Crystal Reports for the application I want the logo of the company should be printed on the report header...
>
>I tried inserting it.. in the crystal report and I found my report got stucked... when I am reopening it.. I don't know what to do.. May be I have done some thing wrong..
>
>How can I get it back...?
>
>Whenever I am opening it gives me the error.. : Memory Full.
>Failed to open a document..
>
>Thanks in Advance..

If you are using HP printer, Then here is a BIG Bad News to You!!

You must be Memory Full becase HP Printer Drive Do not release from memory!!!

I got the same problem like you!!
I need to make 20 reports and 2 labels!!
at those development days, I nearly Reboot my PC over 50 times per day!!
~~~>_<~~~ Really want to Cry!!

I have make a dummy project with the sample following code:
You can also make it if you are using other printers.
ON ESCAPE RESUME
ON SHUTDOWN QUIT

ON ERROR DO errhand WITH ;
	ERROR( ), MESSAGE( ), MESSAGE(1), PROGRAM( ), LINENO( )

LOCAL I, PR

I = 1
PR = "NOTHING"
DO WHILE I > 0 AND !EMPTY(PR)
	I = ALLTRIM(STR(I))
	WAIT "The &I - (th) Times on GetPrinter!!" WINDOW NOWAIT
	I = VAL(I)
	PR = GETPRINTER()
	I = I + 1
ENDDO

QUIT

*** Sure Not Further Execution, escape Error ***

#DEFINE DEBUGING .F.

PROCEDURE errhand
PARAMETER merror, mess, mess1, mprog, mlineno
	CLEAR
	ON ERROR  && restore system error handler
	IF DEBUGING
	=MessageBox('Error number: ' + chr(9) + LTRIM(STR(merror)) + repl(chr(13),2) +;
	'Error message: ' + chr(9) + mess + repl(chr(13),2) +;
	'Line of code with error: ' + chr(9) + mess1 + repl(chr(13),2) +;
	'Line number of error: ' + chr(9) + LTRIM(STR(mlineno)) + repl(chr(13),2) +;
	'Program with error: ' + mprog, 48, "Error Message Found!!")
	DEBUG
	ENDIF
*	RETURN .F.
ENDPROC
For this dummy printer test, My PC with 32M RAM only loop for 18-19 times...
Of cos, loading other application such as VFP will make it worse!!

Hope you are not using HP printer la. >~<"
Actually, if You are printing over 10 times with Winword or other application.
The problem still come!!
Many ppl already complain HP but NO reply!!
Even in HP homepage, the printer drive is made in 1996!!
still not update yet!!

Sorry to post complain here but TRUTH! >.<'
The weak wait for chance, The strong bid for chance,
The clever notch up chance, but The merciful give you chance.
Previous
Reply
Map
View

Click here to load this message in the networking platform