Naming conventions

amanco

Registered User.
Local time
Today, 15:11
Joined
May 10, 2004
Messages
53
(1) What characters i should not use in Fields names, as i realized when working with VBA some characters are not recognized and substituted with (_)?

(2) is it ok if i add underscore (_) in table's and form's names?

(3) any hints about naming? like for a text box field we use txt

(4) any good articles to read?

thank you :)
 
amanco said:
(1) What characters i should not use in Fields names, as i realized when working with VBA some characters are not recognized and substituted with (_)?

(2) is it ok if i add underscore (_) in table's and form's names?

(3) any hints about naming? like for a text box field we use txt

(4) any good articles to read?

  1. Preferably, all characters but alphanumerical characters.
  2. It is okay but not advised. It's a better practice to elimiate all breaks in words and capitalising the first letter of each word in an object's name thus, rather than frm_My_Special_Form, you have frmMySpecialForm.
  3. Read the article NavyGuy has posted. It contains the most commonly used conventions.
  4. See 3.
 

Users who are viewing this thread

Back
Top Bottom