Skip to content

Instantly share code, notes, and snippets.

@wqweto
Created October 14, 2020 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wqweto/f42821731b028d6f923cca05026bb79c to your computer and use it in GitHub Desktop.
Save wqweto/f42821731b028d6f923cca05026bb79c to your computer and use it in GitHub Desktop.
Execution order
Option Explicit
Private Function A() As Long
A = 1
MsgBox "A"
End Function
Private Function B() As Long
B = 2
MsgBox "B"
End Function
Private Function C() As Long
C = 3
MsgBox "C"
End Function
Private Sub Form_Load()
If A < B And B < C Then
End If
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment