vote up 0 vote down star

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..

flag

43% accept rate
7  
You are going to have to provide a whole lot more details about what you are trying to do to get a decent answer. – Nick Hodges Sep 24 at 17:59
1  
How big an image are you trying to create? (Dimensions and color depth) – Rob Kennedy Sep 24 at 19:24
hi, my table size is variable. i create image and set width and height. draw table by canvas.lineto. when draw a large table error occur. – etoshey Sep 25 at 15:18
You can't just say "variable". Of course it will run out of memory at some point. Try to give an example of how big images you're talking about... – Smasher Sep 26 at 18:42
hi ,my code draw sport table.when increase player the competition table become large,for prevent it,decrease table size and i can draw table with 400 player ,it is enough.thank's – etoshey Sep 26 at 19:16

1 Answer

vote up 3 vote down

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;

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.