T
Tim
hi
I used to do this
Dim gfx As System.Drawing.Graphics = pic1.CreateGraphics
gfx.FillEllipse blah blah blah
to draw straight onto a form.
but this is frowned up (slow).
so what is the alternative?
does this line make the new graphics in memory?
Dim gfx As System.Drawing.Graphics = CreateGraphics()
gfx.FillEllipse blah blah blah
if so, how do I get the final image onto my form or picturebox?
many thanks
I used to do this
Dim gfx As System.Drawing.Graphics = pic1.CreateGraphics
gfx.FillEllipse blah blah blah
to draw straight onto a form.
but this is frowned up (slow).
so what is the alternative?
does this line make the new graphics in memory?
Dim gfx As System.Drawing.Graphics = CreateGraphics()
gfx.FillEllipse blah blah blah
if so, how do I get the final image onto my form or picturebox?
many thanks