Last active
December 15, 2015 15:28
-
-
Save toddgeist/5281557 to your computer and use it in GitHub Desktop.
Let Vars in practice
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"$firstName=" & Quote(contact::firstName) & ";¶" & | |
"$flastNameName=" & Quote(contact::lastName) & ";¶" & | |
"$age=" & contact::Age & ";¶" & | |
"$birthDate=" & Quote(contact::birthDate) & ";¶" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Am excited about what you are doing with modules!
Small correction me-thinks. Hope you don't mind...
NOT:
"$flastNameName=" & Quote(contact::lastName) & ";¶" &
BUT
"$lastName=" & Quote(contact::lastName) & ";¶" &