Variables Scope & Lifetime Global/Public (use sparingly and cautiously) Available to all modules and procedures of Project Initialized at start of Project Class/Module (Form) Available to one class/module and all procedures within that classlmodle Initialized 1 st time the Form is loaded Local Available only to the procedure it is declared in Initialized every time the Procedure runs Block (not used until later in this course) Available only to the block of code inside a procedure it is declared in Initialized every time the Procedure runs