Skip to content

Instantly share code, notes, and snippets.

@bervukas
Created February 28, 2016 07:27
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 bervukas/f9a7c295fe8e822d5419 to your computer and use it in GitHub Desktop.
Save bervukas/f9a7c295fe8e822d5419 to your computer and use it in GitHub Desktop.
A better approach to using Magic Values in VBA
Private Const PASSWORD_LENGTH = 7
Sub SetPassword(password As String)
If (Len(password) > PASSWORD_LENGTH) Then
' Display error
End If
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment