RE: (syntax) variable naming conventions

2000-08-07 Thread DeVoil, Nick
Also you might want to take a quick look at http://msdn.microsoft.com/library/backgrnd/html/msdn_20naming.htm "The Leszynski/Reddick Guidelines for Microsoft Access" which is based on Hungarian notation. Pretty clunky if you ask me though. I mean, you can tell a table name refers to a table

(syntax) variable naming conventions

2000-08-04 Thread Michael Dinowitz
I've started to use some variable prefixes in some of my code and was wondering what others were using. I'd like to see a few examples before I post an article on it. My usage at the moment is limited to complex data types: aArray sStructure qQuery oObject I'm sure a case can be

RE: (syntax) variable naming conventions

2000-08-04 Thread Jeremy Allen
] -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Friday, August 04, 2000 12:47 PM To: [EMAIL PROTECTED] Subject: (syntax) variable naming conventions I've started to use some variable prefixes in some of my code and was wondering what others were using. I'd like to see

RE: (syntax) variable naming conventions

2000-08-04 Thread Jeremy Allen
some more ideas goin Jeremy -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Friday, August 04, 2000 12:47 PM To: [EMAIL PROTECTED] Subject: (syntax) variable naming conventions I've started to use some variable prefixes in some of my code and was wondering

Re: (syntax) variable naming conventions

2000-08-04 Thread Todd Ashworth
variables, instead of trying to look for each individual variable name. It's just easier for me in the long run. Todd Ashworth - Original Message - From: "Michael Dinowitz" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 04, 2000 12:46 PM Subject: (syntax) varia

Re: (syntax) variable naming conventions

2000-08-04 Thread Sharon DiOrio
Not a bad habit to get into. Spectra uses extensive variable prefixing. Their list is: st = structure a = array q = query w = wddx wst = wddx of a structure (etc.) Sharon At 12:46 PM 8/4/2000 -0400, Michael Dinowitz wrote: I've started to use some variable prefixes in some of my code and was

Re: (syntax) variable naming conventions

2000-08-04 Thread pan
From: "Michael Dinowitz" [EMAIL PROTECTED] I've started to use some variable prefixes in some of my code and was wondering what others were using. I'd like to see a few examples before I post an article on it. My usage at the moment is limited to complex data types: aArray

Re: (syntax) variable naming conventions

2000-08-04 Thread Dick Applebaum
There isn't any penalty for using long var names. If visibility of logic and job steps is of a higher priority than simplifying code writing, then using explicit names is (IMO) better. Prefixing has always seemed to be a feature of top down imposed shop rules for controlling idiosyncratic