I get a Block if without End If error with the following code:
How can I set up an if statement to where if the boolean value is true, the sub is closed??Code:If NextTorrent = True Then
End Sub
End If
Printable View
I get a Block if without End If error with the following code:
How can I set up an if statement to where if the boolean value is true, the sub is closed??Code:If NextTorrent = True Then
End Sub
End If
If NextTorrent = True Then Exit Sub
Thank you!