Skip to content

Instantly share code, notes, and snippets.

@joseph4tw
Created November 8, 2017 12:54
Show Gist options
  • Save joseph4tw/107b958a478c8556777f0ecfa24fdb87 to your computer and use it in GitHub Desktop.
Save joseph4tw/107b958a478c8556777f0ecfa24fdb87 to your computer and use it in GitHub Desktop.
Option Explicit
Public Sub MyPublicSub()
Call MyPrivateSub ' use the Call keyword
MyPrivateSub ' just call the sub procedure
End Sub
Private Sub MyPrivateSub()
Debug.Print "In MyPrivateSub"
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment