Hey everyone, I need help finding a syntax error in the following code. I will pay somone like $5 after they post back the code with a corrected syntax! Thanks
///////////////////CODE STARTS HERE\\\\\\\\\\\\\\\\\\\\\\\
Imports System
Imports System.Windows.Forms
Imports System.Drawing
Imports Functions
Class ClassName1
public Dim a As Integer = 1
Sub main()
Class1.minimise(Class1.getForm())
Class1.activeWindow()
System.Threading.Thread.Sleep(300)
While (a != 0)
If (loop() == -1) Then
a = 0
End If
End While
System.Threading.Thread.Sleep(300)
Class1.maximise(Class1.getForm())
End Sub
public Function loop() As Integer
return -1
End Function
End Class