1 / 8

Introduction to the IDE

Introduction to the IDE. Integrated Development Environment. A Look at the IDE Popular buttons. Use Project Explorer to locate Modules. Change Properties of selected object. Save your work. Run a proc in a Standard Module. A Look at the IDE Get Set Up Properly. Customize your buttonbar.

qiana
Download Presentation

Introduction to the IDE

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to the IDE Integrated Development Environment

  2. A Look at the IDEPopular buttons Use Project Explorer to locate Modules Change Properties of selected object Save your work Run a proc in a Standard Module

  3. A Look at the IDEGet Set Up Properly Customize your buttonbar Bookmarks help finding code Indents help code appearance Comments help remembering code

  4. Essential IDE SkillsForm Class Object Modules • These modules are created for you • They are containers for Form-based procedures • Procs in one Form Module are invisible to another form • Event procedures in a Form Class Module can be edited • Cannot test these procs in the IDE • Run the Form in Access to test procs in a Form Class Module

  5. A Look at the IDEForm Class Module (Form_frmContribution) The Button Wizard wrote this code when we pasted the Next button on frmContribution back in Access

  6. Essential IDE SkillsStandard Modules • Create Standard Modules in the IDE • These are containers for general procedures • Created using Menu: Insert, Procedure • Rename modules: modUtilities, modGlobals • Create and test general procedures here • Procs are functions and subprograms • All forms can use these procedures • Delcare Option Explicit in modGlobals

  7. Creating code in the IDEEditing a Function Typing MID( is enough to activate Auto Quick with handy argument reminders

  8. Testing code in the IDEStandard Module (modUtilities) Test single statements Test procedures

More Related