N
nobody
Here's setting it....
Dim PenColor As New System.Drawing.Pen(System.Drawing.Color.Red)
Now how do I change "PenColor" variable?
Or, do I have to do like this below for each color?
Dim PenColor_Red As New System.Drawing.Pen(System.Drawing.Color.Red)
Dim PenColor_Green As New System.Drawing.Pen(System.Drawing.Color.Red)
Dim PenColor As New System.Drawing.Pen(System.Drawing.Color.Red)
Now how do I change "PenColor" variable?
Or, do I have to do like this below for each color?
Dim PenColor_Red As New System.Drawing.Pen(System.Drawing.Color.Red)
Dim PenColor_Green As New System.Drawing.Pen(System.Drawing.Color.Red)