Hi there!
I am using the portable version of sharpDevelop.
I don't know that much about Visual Basic Script or if this is the right thing to post it in. But what am I doing wrong?
I get this error for line 24 :
A expression was expected
My code:
Public Partial Class MainForm
Public Sub New()
' The Me.InitializeComponent call is required for Windows Forms designer support.
Me.InitializeComponent()
'
' TODO : Add constructor code after InitializeComponents
'
End Sub
Sub MainFormLoad(sender As Object, e As EventArgs)
End Sub
Sub Button1Click(sender As Object, e As EventArgs)
If textBox1== "Admin" And maskedTextBox1== "Password" Then
End If
End Sub
End Class
What am I doing wrong and how do I fix it?
Thankful for help //Mackan90096