I know how to draw a line, but the min length of a line is 2 pixles, I need to draw a dot? Any Thoughts?
Last edited by Evad; Feb 10th, 2003 at 04:13 AM.
I was palying around graphics class and came up with very small dot . VB Code: Dim i As New Bitmap(1, 1) i.SetPixel(0, 0, Color.Black) e.Graphics.DrawImage(i, 100, 100) i.Dispose()
Dim i As New Bitmap(1, 1) i.SetPixel(0, 0, Color.Black) e.Graphics.DrawImage(i, 100, 100) i.Dispose()
Forum Rules