MaXXSoFT
New member
Kaçan buton!
command1 (height=600)
Private Sub Command1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim i
if Command1.Top = 600 Then
For i = 600 To form1.Height - 2 * Command1.Height Step 3
Command1.Top = i
Next i
Else
For i = form1.Height - 2 * Command1.Height To 600 Step -3
Command1.Top = i
Next i
End if
End Sub
command1 (height=600)
Private Sub Command1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim i
if Command1.Top = 600 Then
For i = 600 To form1.Height - 2 * Command1.Height Step 3
Command1.Top = i
Next i
Else
For i = form1.Height - 2 * Command1.Height To 600 Step -3
Command1.Top = i
Next i
End if
End Sub