I am new to this thing and I am obviously stuck here.
Here's what you have to do.
Create a draw dots application that allows the user to enter the infomation needed to draw ta dot.
You have to have a ""x-coordinate text box""
you have to have a ""y-coordinate text box""
you have to have a ""thickness text box""
I can figure out how to draw a dot but I don't know how to increase the thickness so please let me know how you do this.
HERE'S MY CODE!
Private Sub Done_Click()
Unload Me
End Sub
Private Sub draw_Click()
Dim a As Integer, b As Integer, t As Integer
a = x.Text
b = y.Text
t = thickness.Text
PSet (a, b), vbRed
End Sub