Check which ports are open to the outside world. Helps make sure that your firewall rules are working as intended.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
From a given IF, you can always "find" the next END IF. As long as it's the innermost IF block, then you can highlight and press tab to indent that particular IF.
Also, a tip from my co-worker:
Any time you end a long block, add a comment that references back to the starting block. Ex.:
Private Sub XYZ()
'... lots of code
End Sub XYZ
If XXX=1 then
'... lot of code
End If ' XXX=1
Select Case ZYX
'... lots of cases
End Select ' ZYX