PHP ver gevorderde |
|
Ik krijg een error bij een login systeempje van een tutorial... Dit is de eerste keer dat ik met VB werk... Dus het zou wel een dom iets zijn, maarja...
Citaat: Error 1 Overload resolution failed because no accessible '=' can be called with these arguments:
'Public Shared Operator =(a As String, b As String) As Boolean': Value of type 'System.Windows.Forms.TextBox' cannot be converted to 'String'. C:Documents and SettingsNoRuleZMijn documentenVisual Studio 2005Projectstestbestand.vb 20 12 WindowsApplication1
Code:
Private Sub login_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles login.Click
If username = "test" And password = "pass" Then
Me.Hide()
MsgBox("Goede Login", vbCritical, "Toegang")
Else
MsgBox("Foute login !", vbCritical, "Error")
End If
End Sub
Private Sub login_Click (ByVal sender As System.Object , ByVal e As System.EventArgs ) Handles login .Click If username = "test" And password = "pass" Then Me.Hide() MsgBox("Goede Login", vbCritical, "Toegang") Else MsgBox("Foute login !", vbCritical, "Error")
Alvast bedankt,
Edwin ter H.
|