un nuovo problema
... scrivo il seguente codice:
codice:
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub Command1_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Me.Print("E' stato premuto un tasto del mouse.")
End Sub
Private Sub Command1_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Me.Print("E' stato rilasciato un tasto del mouse.")
End Sub
End Class
ma mi sottolinea Me.Print dicendomi: Print non è un membro di WindowsApplication1.Form1
cosa devo fare???