Dear All,
Thanks for a great forum
Please could help be provided for in the following problem.
I have a report which gets it's data from a query.
The reports function is to print a certificate.
The certificate consists of a streched linked image that is linked according to Rating number 0 - 5.
The following code links the image in the report on the On format option.
I have reduced the images to 62KB(Max) each.
The problem happens after I run the report.
I try to go to the last or midway certificate and the error appears that it has run out of memory...
I have tried the code on page and that uses slightly less memory, but the first certificate is incorrect.
I could then add On open to rectify this, but the on page still runs out of memory...
Is there a way to increase Access' memory usage, working on server using citrix, 4-8GB memory.
Is this even the problem??
I mean 62KB for an image is pretty small...
Are there better ways to use images?
I am using image control..not bound object.
Please help I am banging my head on this hard...
Thank you,
Kind regards
Triacona
Thanks for a great forum
Please could help be provided for in the following problem.
I have a report which gets it's data from a query.
The reports function is to print a certificate.
The certificate consists of a streched linked image that is linked according to Rating number 0 - 5.
The following code links the image in the report on the On format option.
Code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Dim path As String
path = "G:\EH\FsaWeb\CertGiff\" & [Rating] & ".gif"
Me.ImgRating.Picture = path
End Sub
I have reduced the images to 62KB(Max) each.
The problem happens after I run the report.
I try to go to the last or midway certificate and the error appears that it has run out of memory...
Run-time error '2114' said:Reports - EH V3.0 doesn't support the format of the file 'G:\EH\Fsaweb\CertGiff\5.gif', or the file is to large. Try converting the file to BMP or GIF format.
I have tried the code on page and that uses slightly less memory, but the first certificate is incorrect.
I could then add On open to rectify this, but the on page still runs out of memory...
Is there a way to increase Access' memory usage, working on server using citrix, 4-8GB memory.
Is this even the problem??
I mean 62KB for an image is pretty small...
Are there better ways to use images?
I am using image control..not bound object.
Please help I am banging my head on this hard...
Thank you,
Kind regards
Triacona