A
active
This is what I do in a PictureBox New:
b1 = New Drawing.Bitmap(Width, Height, Me.CreateGraphics())
g1 = Graphics.FromImage(b1)
Someplace I do
g1.DrawString.........
Then in Paint I do:
e.Graphics.DrawImage(b1, 0, 0)
Do I have to do something in Dispose??
What should I do if the Box is resized??
Thanks
Cal
b1 = New Drawing.Bitmap(Width, Height, Me.CreateGraphics())
g1 = Graphics.FromImage(b1)
Someplace I do
g1.DrawString.........
Then in Paint I do:
e.Graphics.DrawImage(b1, 0, 0)
Do I have to do something in Dispose??
What should I do if the Box is resized??
Thanks
Cal