I started a new thread because i cant reply on the older one.
Thank you very much Rick for the usefull reply. But i'v got another
question. When drawing the line, you cant see the line untill you
release the mouse button. I want to see the line when im drawing!!
Im using the following code:
Private Sub Picture1_MouseD own(Button As Integer, Shift As Integer, X
As Single, Y As Single)
x1 = z.X
y1 = z.Y
lbl3 = "x1: " & x1
lbl4 = "y1: " & y1
With Line1
.Visible = True
.x1 = X
.y1 = Y
.x2 = X
.y2 = Y
Drawing = True
End With
End Sub
Private Sub Picture1_MouseM ove(Button As Integer, Shift As Integer, X
As Single, Y As Single)
If Drawing Then
With Line1
.x2 = X
.y2 = Y
End With
End If
End Sub
Private Sub Picture1_MouseU p(Button As Integer, Shift As Integer, X As
Single, Y As Single)
x2 = z.X
y2 = z.Y
'lbl5 = "x2: " & x2
'lbl6 = "y2: " & y2
Drawing = False
With Line1
Picture1.Line (.x1, .y1)-(.x2, .y2), vbGreen
.Visible = False
End With
End Sub
Can someone help me with this??
Dennis
Thank you very much Rick for the usefull reply. But i'v got another
question. When drawing the line, you cant see the line untill you
release the mouse button. I want to see the line when im drawing!!
Im using the following code:
Private Sub Picture1_MouseD own(Button As Integer, Shift As Integer, X
As Single, Y As Single)
x1 = z.X
y1 = z.Y
lbl3 = "x1: " & x1
lbl4 = "y1: " & y1
With Line1
.Visible = True
.x1 = X
.y1 = Y
.x2 = X
.y2 = Y
Drawing = True
End With
End Sub
Private Sub Picture1_MouseM ove(Button As Integer, Shift As Integer, X
As Single, Y As Single)
If Drawing Then
With Line1
.x2 = X
.y2 = Y
End With
End If
End Sub
Private Sub Picture1_MouseU p(Button As Integer, Shift As Integer, X As
Single, Y As Single)
x2 = z.X
y2 = z.Y
'lbl5 = "x2: " & x2
'lbl6 = "y2: " & y2
Drawing = False
With Line1
Picture1.Line (.x1, .y1)-(.x2, .y2), vbGreen
.Visible = False
End With
End Sub
Can someone help me with this??
Dennis
Comment