VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Draw a simple circle using VB

Rajesh Yadav  (1 Submission)   Graphics   VB 6.0   Unknown Difficulty   Wed 13th May 2009   Mon 8th February 2021

Draw a simple circle using VB

API Declarations



Private Sub Form_Click()
Line (a, b)-(c, d)
End Sub

Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
a = X
b = Y
End Sub

Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
c = X
d = Y
End Sub


Rate Draw a simple circle using VB (1(1 Vote))
Draw a simple circle using VB.bas

Draw a simple circle using VB Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters