Gay Biker Jesus
New member
I'm trying to figure out how to make a graphics variable that can be reused and stored into a stack. I know how to store objects to stack but how do a make a graphics object from the draw graphics features? To give an idea of what I'm trying to accomplish...
Dim G as graphics
G= drawEllipse(pens.blue, 50,50,50,50)
or if I was to say do this:
dim Circle as new graphics
Circle=picturebox1.creategraphics
Circle.drawellipse(pens.blue,50,50,50,50)
Would I be able to call on that Circle at a later point? This sounds like such a newbie question but I've never worked with graphics that much before.
Dim G as graphics
G= drawEllipse(pens.blue, 50,50,50,50)
or if I was to say do this:
dim Circle as new graphics
Circle=picturebox1.creategraphics
Circle.drawellipse(pens.blue,50,50,50,50)
Would I be able to call on that Circle at a later point? This sounds like such a newbie question but I've never worked with graphics that much before.