tags:

views:

110

answers:

1

hi I want draw a table with Timage canvas but when i want draw a large table, occur this error "not enough storage is available to process this command"

increase the SharedSection in Registry,but not effect at my problem.

please guide me..

+3  A: 

I think I've encountered this problem. Look into the PixelFormat. Setting it "down" from the default did the trick for me.

WorkPicture1 := TPicture.Create;

WorkPicture1.Bitmap.PixelFormat := pf24bit;

Steve Forest