1. Is there a standard naming convention for function/procedure names regarding the length of the name?
Code: Select all
Procedure This Is JustaLongExampleNameForaProcedureThatMightBeTooLong()
or...
Procedure ThisIsAnExampleName()
Code: Select all
Procedure ThisWillTurnOnTheWindow() ; tells exactly what this is for
or...
Procedure TurnOnWindow() ; gives an idea what this is for
and not just...
Procedure Window() ;does this tell us if it turns it on or not?
2. It seems a library is basically an include file of sorts (not exactly but you could think of it that way). So...does it matter if a library is used instead of an Include file? The library has advantages in the sense that its available to you at all times where as an include seems to be mostly for a particular purpose, but you can put the include in with anything your developing. Is one faster then the other?






