pset(x,y)

matrix9

New member
Joined
Apr 27, 2005
Messages
2
Programming Experience
1-3
how can i find like this function in vb.net ?
how can iwrite this function in vb.net please
 
Painting a Picture?

One of the nice things about VB.NET is the Owner Draw Functions that are available to you.

Check out the Paint event of the form. The event argument 'e' has just what you need. Start by typing e.Graphics.Draw and begin there Inteli will do the rest.

Dont forget to invalidate your form to cause it to refresh.
 
Back
Top