With your host: Daniel McAllister

Slides:



Advertisements
Similar presentations
D1 Session 6 Macros. Macros are used to automate your database A named sequence of instructions Each instruction is called an action Each action carries.
Advertisements

INTRODUCTORY MICROSOFT ACCESS Lesson 1 – Access Basics
MS-Access XP Lesson 1. Introduction to MS-Access Database Management System Software (DBMS) Store data in databases Database is a collection of table.
Exploring Microsoft Access 2003 Chapter 7 Building Applications: The Switchboard, Macros, and Prototyping.
Microsoft Access 2003 Introduction To Microsoft Access 2003.
Access Tutorial 1 Creating a Database
Macros Tutorial Week 20. Objectives By the end of this tutorial you should understand how to: Create macros Assign macros to events Associate macros with.
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 1 1 Microsoft Access 2003 Tutorial 1 – Introduction To Microsoft Access 2003.
Microsoft Access 2013 Build User-Friendly Database Systems Chapter 7.
Access Tutorial 10 Automating Tasks with Macros
Tutorial 1 Creating a Database. Objectives Learn basic database concepts and terms Learn basic database concepts and terms Explore the Microsoft Access.
Microsoft Visual Basic 2005 CHAPTER 12 Cell Phone Applications and Web Services.
Pasewark & Pasewark Microsoft Office 2003: Introductory 1 INTRODUCTORY MICROSOFT ACCESS Lesson 1 – Access Basics.
Automating Database Processing Chapter 6. Chapter Introduction Design and implement user-friendly menu – Called navigation form Macros – Automate repetitive.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 11 Committed to Shaping the Next Generation of IT Experts. Chapter 10 Customizing a Database.
Introduction to Computer in Technology. Internet Discovery Were going to define several terms that are common in Computers and Technology One way to find.
® Microsoft Office 2013 Access Creating a Database.
MS Access: Introduction 1Database Design. MS Access: Overview MS Access A Database Management System (DBMS) designed to create applications that organize,
MICROSOFT ACCESS With your host: Daniel McAllister.
Access Lesson 11 Creating and Running Macros Microsoft Office 2010 Advanced Cable / Morrison 1.
MICROSOFT ACCESS 2010 With your host: Daniel McAllister.
1 In Microsoft Office 2007, click on the Windows button and select the Excel Options button on the lower right From Excel Options, select Trust Center.
Visual Basic for Application - Microsoft Access 2003 Programming applications using Objects.
INTRODUCTION TO ACCESS. OBJECTIVES  Define the terms field, record, table, relational database, primary key, and foreign key  Create a blank database.
COMPREHENSIVE Access Tutorial 1 Creating a Database.
COMPREHENSIVE Excel Tutorial 12 Expanding Excel with Visual Basic for Applications.
Chapter 11 Enhancing an Online Form and Using Macros Microsoft Word 2013.
Microsoft Access Lesson One Notes.
Access Tutorial 2 Building a Database and Defining Table Relationships
Tutorial 1 Creating a Database
INTRODUCTION TO DATABASES (MICROSOFT ACCESS)
Welcome to Excel Day 2 of 3 Dan McAllister
IE 8580 Module 4: DIY Monte Carlo Simulation
Microsoft Access 2016 Build User-Friendly Database Systems
IST 220 – Intro to Databases
Working in the Forms Developer Environment
With your host: Daniel McAllister
MS Access Introduction Database Design.
Access Tutorial 1 Creating a Database
Tutorial 8 Managing and Securing a Database
Homework 5 Hints.
Welcome to Excel Day 3 of 3 Dan McAllister
MICROSOFT ACCESS With your host: Daniel McAllister.
Introduction to Access 2007
Access Creating a Database
Exploring Microsoft Office Access
Access Creating a Database
Microsoft Access Illustrated
Access Lesson 1 Understanding Access Fundamentals
Exploring Microsoft Office Access 2007
Exploring Microsoft Office Access 2007
Build User-Friendly Database Systems Chapter 7
Exploring Microsoft Office Access 2007
Tutorial 1 – Introduction To Microsoft Access 2003
Access Tutorial 1 Creating a Database
MODULE 7 Microsoft Access 2010
Exploring Microsoft Excel
Tutorial 1 – Introduction To Microsoft Access 2003
Exploring Microsoft® Access® 2016 Series Editor Mary Anne Poatsy
Access Tutorial 8 Sharing, Integrating, and Analyzing Data
1) What is a Database? A database is an organized collection of information about a subject. Examples: Address Book, Telephone Book.
Access Tutorial 1 Creating a Database
Access: Access Basics Participation Project
Access Tutorial 1 Creating a Database
Microsoft Office Illustrated Introductory, Windows XP Edition
Access Tutorial 1 Creating a Database
Grauer and Barber Series Microsoft Access Chapter One
Tutorial 8 Sharing, Integrating, and Analyzing Data
Exploring Microsoft Office Access
Access Lesson 1 Microsoft Access Basics
Presentation transcript:

With your host: Daniel McAllister MICROSOFT ACCESS 2013 With your host: Daniel McAllister Use Google Chrome to surf to www.learnit.com/evaluation

Module 7: Automating Access Databases Create Macros There’s no Macro Recorder, as in Word or Excel Instead, you build a “Script” from available Actions Actions often have “Action Arguments” that further refine the Action We’ll see several different ways to trigger our macros By running it from the Editor window By double-clicking the macro’s name in the (left side) Navigation Pane By clicking a Command-Button By opening or closing a form By typing some magic words into a field By opening this database-file (this macro must be named “AutoExec”)

Module 8: DB Maintenance and Deployment Startup Options Introduction to VBA concepts and terminology Compact and repair databases Using hyperlinks in an Access database Record locking Create switchboard-forms (2 ways) By Command-buttons By the “Switchboard Manager”

Macro Actions we are using Result MessageBox Displays information to our user and waits for them to click an [OK]-button OpenForm You can control what the user can do with the records in this form MaximizeWindow Maximizes all windows except MsgBoxes RestoreWindow Un-maximizes all windows Close Closes the current object, but you could use it to close other open objects as well MoveSizeWindow Controls placement of the upper-left corner of a window as well as the height and width of the window SetValue Enter pre-defined data in a pre-defined spot

Practice frmCustomerData is made from tblCustomer tblCustomer has a foreign key named strSalesperson tblPersonal is a list of our employees It has a primary key named EmployeeID frmCustomerData and frmPersonal are made from those 2 tables Create a button on frmCustomerData that opens frmPersonal, connected by strSalesperson <-> strEmployeeID

Visual Basic Programming You usually declare “variables” as memory-locations where you store information Variables that store text are called “String”-variables Search the web for “visual basic variable types” Your program usually has “branches” controlled by “if-then-else” or “Select Case” logical structures

Dan’s Parking Lot