Put Final Touches on an Application

Size: px
Start display at page:

Download "Put Final Touches on an Application"

Transcription

1 Put Final Touches on an Application Callahan Chapter 11 Preparing Your Application for Distribution Controlling How Your Application Starts Forms-based bound forms for data presentation dialog boxes Switchboard for inter-form navigation Ensure errors are handled every VB procedure has an On Error statement to enable error handling Error event is handled for each form/report Designate a startup form typically a Switchboard or a frequently used data entry form Customize the application s startup appearance hide Navigation Pane, Title Bar caption, customized Ribbon Test, test, test! Custom Ribbon menus Custom Help, ToolTips, Status Bar Prepare application for network use and maintenance split file architecture Security options encrypt and password protect deploy multiple front-ends deploy front-end as an ACCDE/MDE Handle multi-user issues coming soon 1

2 Providing a StartUp Form for Your Application Switchboard form purpose? contents? Add a command button to exit the application needed to tweak Wizard s code since the Switchboard has no RecordSource (unbound) the Dirty property not available Private Sub QuitApplication_Click() On Error GoTo Err_QuitApplication_Click 'If Me.Dirty Then Me.Dirty = False 'delete to prevent an error DoCmd.Quit Exit_QuitApplication_Click: Exit Sub Err_QuitApplication_Click: MsgBox Err.Description Resume Exit_QuitApplication_Click End Sub Providing a StartUp Form for Your Application Changed several form-level properties Caption AllowDatasheetView ScrollBars RecordSelectors NavigationButtons AutoCenter BorderStyle 2

3 Make Your Switchboard Form Open Automatically StartUp Options actions that take place automatically when the database is opened File Options Current Database each can also be set using VBA code can bypass by holding [Shift] as DB opens can create a custom database property called AllowByPassKey to take away this capability Startup Options used in Callahan 11 Application Title designate a caption for Access window s title bar Display Form designate which form to open as application loads Display Navigation Pane cleared this so Navigation Pane would be hidden why hide Navigation Pane? Practice Time Use Startup Options in Artie s List.mdb to provide an application title of Artie Enterprises, Inc. disallow special Access keys disable Layout View disable Design Changes display the Navigation Pane we don t have a Switchboard form yet designate frmrestaurant as the initial form to be displayed do not allow full menus disable shortcut menus Test your startup options close and reopen Artie s List.mdb test/confirm each startup option above close and reopen Artie s List.mdb while holding [Shift] key to test bypass 3

4 File Server Approach (review from Balter 1) Supports multiple concurrent users.accdb/.mdb file stored in a shared network folder All processing is done on user s workstation, where Access & ACE/Jet run eg: open an MDB file in a shared folder; run a report whose record source is a query, the query definition, report definition, and entire table of data come down network to workstation where ACE/Jet runs the query, applies criteria, passes results to Access to format as specified by report s definition a performance bottleneck! Lots of network traffic especially problematic when lots of users File Server Approach: Enhancement Subscription Data.mdb Subscription.mdb Split file Architecture back-end database file has data tables place it in a shared folder on the network one shared set of tables that multiple users can access front-end database file (aka the application database) has queries, forms, reports, macros, modules, static tables, links to production tables can have links to multiple back-ends deploy a copy on each user s workstation performance is enhanced only tables travel the network eg: open a local application database MDB/ACCDB file, run a report whose record source is a query, the query definition, and report definition are already local table links are used to connect to back-end file, entire table of data comes down network to workstation where ACE/Jet runs the query, applies criteria, passes results to Access to format as specified by report s definition 4

5 Split the Subscription Database into Two Files Advantages data is sharable via the network back-end is the common data source reduces network load since front-end object definitions are local improved performance: since queries, forms, reports, macros, modules are stored locally, there is less network traffic. system is more responsive only the data tables travel over the network application maintenance is independent of the data developer can modify the application front-end without disturbing the existing application and data Disadvantages when rename/move/delete the back-end file, the front-end won t be able to access any data! alternative fixes coming up linked tables lack some functionality can't: use Table-type recordsets, Seek method, modify linked table s structure Database Splitter Exports tables to a new back-end file, then sets up links so back-end tables can be accessed by objects in the front-end (application) database Database Tools Move Data group Access Database Practice Time exit Access and backup your Artie s List-yourname.mdb by copying it rename the copy as Artie s List-yourname (BEFORE DB SPLITTER).mdb write-protect Artie s List-yourname (BEFORE DB SPLITTER).mdb open Artie s List-yourname.mdb and use the Database Splitter create the back end in your \CIS217 Data Files\Others folder and name the back-end file Artie s List yourname DATA.mdb notice the link icons for tables in the front-end ToolTip reveals path in back-end 5

6 Checking and Fixing Linked Tables When rename/move/delete the back-end file, the frontend won t be able to access any data until the links are updated demo Three ways to fix broken table links delete each linked table, then External Data > Access > Link use Linked Table Manager to re-establish links right-click a linked table Linked Table Manager or Database Tools Linked Table Manager demo use VBA to have user point to back-end file, then rebuild the table links Callahan s CheckLinks() function Add Code to Check and Fix Linked Tables Use VBA to have user point to back-end, then rebuild table links Public Function CheckLinks() As Boolean ' Check linked tables relink if necessary. Returns true if ' links are okay (or links are successfully refreshed). On Error GoTo CheckLinksErr Dim tdf As TableDef Dim strnewmdb As String Dim fd As FileDialog ' Loop through each table in the current database. ' Loop through each table in the current database. For Each tdf In CurrentDb.TableDefs ' Check whether this table is linked (connect string not blank) ' and whether its link is broken (no fields in the Fields collection) If Len(tdf.Connect) > 0 And tdf.fields.count = 0 Then ' If we don't have an MDB name yet, display a message and ' then ask the user to pick a new file. If Len(strNewMDB) = 0 Then MsgBox "The back-end data file for this database has been 6

7 Add Code to Check and Fix Linked Tables Two main ways to run code when an application starts designate a startup form and use its events to trigger code have the startup form s Load or Open event call a VBA procedure Callahan added code to Switchboard form s Load event AutoExec macro if present, runs automatically after any Startup options are processsed can use RunCode macro action to run a VBA function Artie s List has a hidden AutoExec macro that calls a function named DBStartUp demo Practice Time Modify Artie s List front-end to check for & fix broken table links unhide AutoExec macro and bastrackactivity module import Subscription.mdb s Relinker module into Artie s List.mdb modify DBStartup to call the CheckLinks function Debug > Compile Artie s List error need a reference to use FileDialog object Tools > References > Microsoft Office 12.0 Object Library Debug > Compile Artie s List (ok now) Test exit Access rename Artie s List DATA.mdb to Artie s List DATAzzz.mdb re-open the front-end to see CheckLinks in action rename Artie s List DATAzzz.mdb to Artie s List DATA.mdb re-open the front-end to see CheckLinks in action 7

8 Protecting Your Application with a Password Encryption scrambles MDB/ACCDB file so it is unreadable outside of Access Password controls access to database & contents anyone who knows the password has access to its objects consider deploying multiple front-ends To encrypt and password protect 1. File Open Open Exclusive 2. File Set Database Password Practice Time open Artie s List DATA.mdb exclusively, set password yellowgm5474%j open Artie s List.mdb exclusively, set password 45timexmeDia3 Open Exclusive while hold [Shift] Practice Time Test that you can open the password-protected backend Artie s List DATA.mdb yellowgm5474%j success close the backend open the master front-end Artie s List.mdb 45timexmeDia3 the file did open but it couldn t link to the password-protected backend! close Artie s List.mdb, remain in Access re-open Artie s List.mdb 45timexmeDia3 while hold [Shift] add new constant to Relinker module modify CheckLinks to use the backend password open the master front-end Artie s List.mdb 45timexmeDia3 8

9 Deploying an MDE/ACCDE Concepts an Access file format that protects form, report, and module objects deploy front-ends as MDE/ACCDE the following tasks are prohibited in an MDE/ACCDE file view/modify VBA code modules create/modify forms, reports, or modules can create/modify tables, queries, macros import/export forms, reports, or modules can import/export tables, queries, macros Database Tools Make MDE compiles all VBA modules, removes source code, compacts destination file the original MDB/ACCDB file remains unmodified the original mdb/accdb is the master for future development! when you need to modify form, report, or module, do so in the the original MDB/ACCDB file, then make a new MDE/ACCDE file Practice Time with Artie s List.mdb (front-end) open, make MDE in \CIS217 Data Files\Others folder exit Access, open Artie s List.mde close the file, reopen Artie s List.mde with [SHIFT] and attempt each prohibited task Deployment & Beyond Copy the back-end database to a shared folder on the server users need permissions to create, read, & modify files in that folder Copy the front-end mde/accde file to each user s workstation linked tables local Q/F/R/M/M Backup the front-end mdb/accdb the file for future development Backup the back-end! periodically on a specified schedule off-site storage Compact the back-end for database health and performance Fixes, Enhancements, & New Features make changes in master MDB new Q/F/R/M/M modify objects in master MDB make new mde/accde & deploy 9

Find and Filter Records on a Form

Find and Filter Records on a Form Find and Filter Records on a Form Callahan Chapter 3 All About Me Review each form/report can have its own module Me a reference to the form/report whose code is currently executing eg: Me.AllowEdits =

More information

A Back-End Link Checker for Your Access Database

A Back-End Link Checker for Your Access Database A Back-End for Your Access Database Published: 30 September 2018 Author: Martin Green Screenshots: Access 2016, Windows 10 For Access Versions: 2007, 2010, 2013, 2016 Working with Split Databases When

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Microsoft Access is database software that provides templates to help you add databases that make it easier to track, report, and share data with others. Although very powerful, the

More information

Access Macros & Advanced Topics

Access Macros & Advanced Topics Access Macros & Advanced Topics Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk 293-4444 x 1 http://oit.wvu.edu/support/training/classmat/db/ Instructor:

More information

Respond to Errors and Unexpected Conditions

Respond to Errors and Unexpected Conditions Respond to Errors and Unexpected Conditions Callahan Chapter 7 Practice Time Artie s List Loose Ends ensure that frmrestaurant s module has Option Explicit modify tblrestaurant field sizes Restaurant -

More information

Administering a Database System

Administering a Database System Microsoft Access 2010 10 Administering a Database System Objectives You will have mastered the material in this project when you can: Create custom Quick Start fields Create indexes Create a Web database

More information

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction.

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction. Make databases user friendly 11 IN THIS CHAPTER, YOU WILL LEARN HOW TO Design navigation forms. Create custom categories. Control which features are available. A Microsoft Access 2013 database can be a

More information

d2vbaref.doc Page 1 of 22 05/11/02 14:21

d2vbaref.doc Page 1 of 22 05/11/02 14:21 Database Design 2 1. VBA or Macros?... 2 1.1 Advantages of VBA:... 2 1.2 When to use macros... 3 1.3 From here...... 3 2. A simple event procedure... 4 2.1 The code explained... 4 2.2 How does the error

More information

AVANTUS TRAINING PTE LTD

AVANTUS TRAINING PTE LTD [MSACS10]: Microsoft Access 2010 Length Delivery Method : 3 Days : Instructor-led (Classroom) Course Overview Microsoft Access 2010 teaches participants how to design data tables, select appropriate data

More information

Access 2016 Essentials Syllabus

Access 2016 Essentials Syllabus Access 2016 Essentials Syllabus Lesson 1 Creating & Managing Databases 1.1 Introduction Lesson content; What is a database? The course folders; The course player; Screen resolution notes; Prerequisites;

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 1 Databases and Database Objects: An Introduction Objectives Describe the features of the Access window Create a database Create tables in Datasheet and Design views Add records

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 1 Databases and Database Objects: An Introduction Objectives Design a database to satisfy a collection of requirements Describe the features of the Access window Create a

More information

Database Design Lab: MS Access Queries

Database Design Lab: MS Access Queries Database Design Lab: MS Access Queries 1. Download lab6.accdb and rename it to lab7.accdb. 2. Create a simple query named qryauthor that has a Name attribute (i.e. Firstname Lastname ). a) Open lab6.accdb.

More information

Bulletproofing the Database

Bulletproofing the Database Bulletproofing the Database Robert Grauer, Keith Mulbery, Maurie Wigman Lockley Copyright 2008 Pearson Prentice Hall. All rights reserved. 1 Objectives Encrypt and password protect a database Digitally

More information

INTRODUCTION ACCESS 2010

INTRODUCTION ACCESS 2010 INTRODUCTION ACCESS 2010 Overview of Ms. Access 2010 Microsoft Access is a computer application used to create and manage databases. Access Databases can store any type of information: numbers, text, and

More information

Access 2016: Core Database Management, Manipulation, and Query Skills; Exam

Access 2016: Core Database Management, Manipulation, and Query Skills; Exam Microsoft Office Specialist Access 2016: Core Database Management, Manipulation, and Query Skills; Exam 77-730 Successful candidates for the Access 2016 exam have a fundamental understanding of the application

More information

Microsoft. Access Microsoft Office Specialist 2010 Series EXAM COURSEWARE Achieve more. For Evaluation Only

Microsoft. Access Microsoft Office Specialist 2010 Series EXAM COURSEWARE Achieve more. For Evaluation Only Microsoft Access 2010 Microsoft Office Specialist 2010 Series COURSEWARE 3245 1 EXAM 77 885 Achieve more Microsoft Office Specialist 2010 Series Microsoft Access 2010 Core Certification Lesson 1: Exploring

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access USING MICROSOFT ACCESS 1 Interfaces 2 Basic Macros 2 Exercise 1. Creating a Test Macro 2 Exercise 2. Creating a Macro with Multiple Steps 3 Exercise 3. Using Sub Macros 5 Expressions

More information

Microsoft Certified Application Specialist Exam Objectives Map

Microsoft Certified Application Specialist Exam Objectives Map Microsoft Certified Application Specialist Exam Objectives Map This document lists all Microsoft Certified Application Specialist exam objectives for (Exam 77-605) and provides references to corresponding

More information

AVANTUS TRAINING PTE LTD

AVANTUS TRAINING PTE LTD [MSACS13]: Microsoft Access 2013 Length : 3 Days Technology : Microsoft Office 2013 Delivery Method : Instructor-led (Classroom) Course Overview This Microsoft Access 2013 teaches participants how to design

More information

Navigating a Database Efficiently

Navigating a Database Efficiently Navigating a Database Efficiently 1 Navigating a Database Efficiently THE BOTTOM LINE Often, the people who use a database are not the same people who create a database, and thus they may have difficulty

More information

Understanding Acrobat Form Tools

Understanding Acrobat Form Tools CHAPTER Understanding Acrobat Form Tools A Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer Bible Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer

More information

Index. Access Close button

Index. Access Close button Index A Access. See Microsoft Access action queries, 130, 146, 293 append queries, 130 converting from select queries, 168 creating, 168 delete queries (see delete queries) make-table queries, 130 update

More information

MICRSOFT OFFICE PACKAGE COURSE OUTLINES

MICRSOFT OFFICE PACKAGE COURSE OUTLINES MICRSOFT OFFICE PACKAGE COURSE OUTLINES Document Created by: Sivashankar Santhanam Training Course Outline- 3 Levels for Access 2013 Beginner Level -Access: In this course, students will learn how to use

More information

Table of Contents COURSE OVERVIEW... 5

Table of Contents COURSE OVERVIEW... 5 Table of Contents COURSE OVERVIEW... 5 DISCUSSION... 5 THE NEW DATABASE FORMAT... 5 COURSE TOPICS... 6 CONVENTIONS USED IN THIS MANUAL... 7 Tip Open a File... 7 LESSON 1: THE NEW INTERFACE... 8 LESSON

More information

Manual Vba Access 2010 Close Form Without Saving

Manual Vba Access 2010 Close Form Without Saving Manual Vba Access 2010 Close Form Without Saving Close form without saving record Modules & VBA. Join Date: Aug 2010 bound forms are a graphic display of the actual field. updating data is automatic. But

More information

Access made easy. The Access Object.

Access made easy. The Access Object. Access made easy. The Access Object 01 www.accessallinone.com This guide was prepared for AccessAllInOne.com by: Robert Austin This is one of a series of guides pertaining to the use of Microsoft Access.

More information

bs^ir^qfkd=obcib`qflk= prfqb=clo=u

bs^ir^qfkd=obcib`qflk= prfqb=clo=u bs^ir^qfkd=obcib`qflk= prfqb=clo=u cçê=u=táåççïë=póëíéãë cçê=lééåsjp=eçëíë cçê=f_j=eçëíë 14.1 bî~äì~íáåö=oéñäéåíáçå=u This guide provides a quick overview of features in Reflection X. This evaluation guide

More information

Microsoft Access XP (2002) Switchboards & Macros

Microsoft Access XP (2002) Switchboards & Macros Microsoft Access XP (2002) Switchboards & Macros Group/Summary Operations Creating a Switchboard Creating Macro Buttons From Wizards Creating Macros Manually Using the Condition Column Start Up Parameters

More information

Productivity Tools Objectives

Productivity Tools Objectives Word 2003 Understand Microsoft Office Word 2003 Launch Microsoft Office Word 2003 Open Documents Understand The Working Screen Experiment With The Working Screen Navigate Documents Close Documents And

More information

Sage Getting Started Guide. September 2017

Sage Getting Started Guide. September 2017 Sage 100 2018 Getting Started Guide September 2017 2017 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein are the trademarks

More information

How to Import a Certificate When Using Microsoft Windows OS

How to Import a Certificate When Using Microsoft Windows OS How to Import a Certificate When Using Microsoft Windows OS This document explains the process of importing your digital certificate for use in Microsoft Internet Explorer (IE) and/or Mozilla Firefox.

More information

ACCESS 2007 ADVANCED

ACCESS 2007 ADVANCED ACCESS 2007 ADVANCED WWP Learning and Development Ltd Page i Contents CONCEPTS OF NORMALISATION...1 INTRODUCTION...1 FIRST NORMAL FORM...1 SECOND NORMAL FORM...1 THIRD NORMAL FORM...1 FOURTH NORMAL FORM...2

More information

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the The Original Quick Reference Guides Microsoft Access 2010 Access is a tool for creating and managing databases collections of related records structured in an easily accessible format such as a table,

More information

Microsoft Access 2016 Intro to Forms and Reports

Microsoft Access 2016 Intro to Forms and Reports Microsoft Access 2016 Intro to Forms and Reports training@health.ufl.edu Access 2016: Intro to Forms and Reports 2.0 hours Topics include using the AutoForm/AutoReport tool, and the Form and Report Wizards.

More information

Understanding and Using Microsoft Access Macros

Understanding and Using Microsoft Access Macros Understanding and Using Microsoft Access Macros Firstly, I would like to thank you for purchasing this Access database ebook guide; a useful reference guide on understanding and using Microsoft Access

More information

Tutorial 1. Creating a Database

Tutorial 1. Creating a Database Tutorial 1 Creating a Database Microsoft Access 2010 Objectives Learn basic database concepts and terms Explore the Microsoft Access window and Backstage view Create a blank database Create and save a

More information

GP Power Tools. What are the benefits. (AKA: How it solves your pain points) Last Updated: 24-Apr-18

GP Power Tools. What are the benefits. (AKA: How it solves your pain points) Last Updated: 24-Apr-18 GP Power Tools What are the benefits (AKA: How it solves your pain points) Last Updated: 24-Apr-18 Purpose of this presentation The purpose of this presentation is to provide information about GP Power

More information

Getting Started with Access

Getting Started with Access MS Access Chapter 2 Getting Started with Access Course Guide 2 Getting Started with Access The Ribbon The strip across the top of the program window that contains groups of commands is a component of the

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

Access Made Easy. Forms.

Access Made Easy. Forms. Access Made Easy Forms 05 www.accessallinone.com This guide was prepared for AccessAllInOne.com by: Robert Austin This is one of a series of guides pertaining to the use of Microsoft Access. AXLSolutions

More information

Word Tutorial 10. Managing Long Documents COMPREHENSIVE

Word Tutorial 10. Managing Long Documents COMPREHENSIVE Word Tutorial 10 Managing Long Documents COMPREHENSIVE Objectives Create a master document Create, split, merge, and remove subdocuments Control text flow and page breaks Add automatic heading numbers

More information

More Skills 11 Export Queries to Other File Formats

More Skills 11 Export Queries to Other File Formats = CHAPTER 2 Access More Skills 11 Export Queries to Other File Formats Data from a table or query can be exported into file formats that are opened with other applications such as Excel and Internet Explorer.

More information

Creating User-Friendly Databases

Creating User-Friendly Databases Creating User-Friendly Databases Chapter 8 Databases are often created by a small number of people then used by a larger number of others. Often these people do not know how to use all the features of

More information

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2 TABLE OF CONTENTS 1 OVERVIEW...1 2 WEB VIEWER DEMO ON DESKTOP...1 2.1 Getting Started... 1 2.1.1 Toolbar... 1 2.1.2 Right-click Contextual Menu... 2 2.1.3 Navigation Panels... 2 2.1.4 Floating Toolbar...

More information

Exam Name: MOS: Microsoft Office Word 2010 Expert

Exam Name: MOS: Microsoft Office Word 2010 Expert Vendor: Microsoft Exam Code: 77-887 Exam Name: MOS: Microsoft Office Word 2010 Expert Version: DEMO QUESTION 1 Arrange the steps to add a Style to the Quick Styles gallery in the correct order. Answer:

More information

Integration Services. Creating an ETL Solution with SSIS. Module Overview. Introduction to ETL with SSIS Implementing Data Flow

Integration Services. Creating an ETL Solution with SSIS. Module Overview. Introduction to ETL with SSIS Implementing Data Flow Pipeline Integration Services Creating an ETL Solution with SSIS Module Overview Introduction to ETL with SSIS Implementing Data Flow Lesson 1: Introduction to ETL with SSIS What Is SSIS? SSIS Projects

More information

How to work a workbook

How to work a workbook CHAPTER 7 How to work a workbook Managing multiple workbooks...173 Opening multiple windows for the same workbook....178 Hiding and protecting workbooks...182 In early versions of Microsoft Excel, worksheets,

More information

Agilent G6854AA MassHunter Personal Compound Database

Agilent G6854AA MassHunter Personal Compound Database Agilent G6854AA MassHunter Personal Compound Database Quick Start Guide This guide describes how to install and use MassHunter Personal Compound Database. Where to find more information What is Personal

More information

Lesson 1 Getting Started with a Database

Lesson 1 Getting Started with a Database Lesson 1 Getting Started with a Database THE PROFESSIONAL APPROACH S E R I E S M I C R O S O F T ACCESS 2007 Lesson Objectives 2 Identify basic database structure. Work with a Microsoft Access database.

More information

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5)

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Section 6 AGENDA

More information

Forms/Distribution Acrobat X Professional. Using the Forms Wizard

Forms/Distribution Acrobat X Professional. Using the Forms Wizard Forms/Distribution Acrobat X Professional Acrobat is becoming a standard tool for people and businesses to use in order to replicate forms and have them available electronically. If a form is converted

More information

PRODUCTIVITY TIPS USING OUTLOOK Washtenaw Community College

PRODUCTIVITY TIPS USING OUTLOOK Washtenaw Community College PRODUCTIVITY TIPS USING OUTLOOK 2016 Washtenaw Community College August 23, 2018 TABLE OF CONTENTS Email Management... 3 1. Create a Rule:... 3 2. Add a Folder to Your Favorites... 3 To Show Folders in

More information

New Perspectives on Microsoft Access Module 1: Creating a Database

New Perspectives on Microsoft Access Module 1: Creating a Database New Perspectives on Microsoft Access 2016 Module 1: Creating a Database 1 Objectives Session 1.1 Learn basic database concepts and terms Start and exit Access Explore the Microsoft Access window and Backstage

More information

Creating Dashboard Widgets. Version: 16.0

Creating Dashboard Widgets. Version: 16.0 Creating Dashboard Widgets Version: 16.0 Copyright 2017 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

Respond to Data Entry Events

Respond to Data Entry Events Respond to Data Entry Events Callahan Chapter 4 Understanding Form and Control Events Developer s Goal make data entry easy, fast, complete, accurate Many form- and control-level events occur as user works

More information

SQL Server Reporting Services (SSRS) is one of SQL Server 2008 s

SQL Server Reporting Services (SSRS) is one of SQL Server 2008 s Chapter 9 Turning Data into Information with SQL Server Reporting Services In This Chapter Configuring SQL Server Reporting Services with Reporting Services Configuration Manager Designing reports Publishing

More information

RevRatio 1.0. User Manual

RevRatio 1.0. User Manual RevRatio 1.0 User Manual Contents 1. Introduction... 4 1.1 System requirements... 4 2. Getting started... 5 2.1 Installing RevRatio... 5 2.1.1 Installing additional plugins (optional)... 6 2.2 Starting

More information

Office 365 Training For the

Office 365 Training For the Office 365 Training For the 1 P age Contents How to Log in:... 3 Change Your Account Password... 3 Create a Message... 4 Add a Signature... 4 Learn About Inbox Rules... 5 Options > Automatic Replies...

More information

WHAT S NEW IN OUTLOOK WEB 2003?

WHAT S NEW IN OUTLOOK WEB 2003? WHAT S NEW IN OUTLOOK WEB 2003? Below is a sneak preview of some of the new and improved features you will see as you use OUTLOOK WEB 2003. All of these features are described in detail on the pages listed

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 Installation and Setup Guide Revised on 09/25/2014 TABLE OF CONTENTS ROCK-POND REPORTING 2.1... 1 SUPPORT FROM ROCK-POND SOLUTIONS... 2 ROCK-POND REPORTING OVERVIEW... 2 INFRASTRUCTURE

More information

You can also check the videos at the bottom of this page:

You can also check the videos at the bottom of this page: This document is provided to give you an idea what R-Tag Version Control can do and how you can use it. If you decide that you need more information or you prefer to see a demo of the software please do

More information

Sage Getting Started Guide

Sage Getting Started Guide Sage 100 2016 Getting Started Guide This is a publication of Sage Software, Inc. Version 2016 Copyright 2015 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service

More information

Apply Your Knowledge. 1. Improve Data Entry with Validation Rules, Lookup Fields, and Input Masks

Apply Your Knowledge. 1. Improve Data Entry with Validation Rules, Lookup Fields, and Input Masks BCIS2_U3_AP_PRJ.qxd 3/10/04 12:33 Page 512 Apply Your Knowledge Complete the following exercises in order, as directed by your instructor. Each exercise will build on the other, and as you work through

More information

Microsoft Office Specialist Access 2016

Microsoft Office Specialist Access 2016 77-730 Microsoft Office Specialist Access 201 For coverage of all objectives, please utilize Shelly Cashman Series Office 35 & Access 201 Comprehensive Domain Obj Number Objective text Module Pages: Topic

More information

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5)

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Section 5 AGENDA

More information

Microsoft Access Database How to Import/Link Data

Microsoft Access Database How to Import/Link Data Microsoft Access Database How to Import/Link Data Firstly, I would like to thank you for your interest in this Access database ebook guide; a useful reference guide on how to import/link data into an Access

More information

Microsoft Access 2002 for Windows

Microsoft Access 2002 for Windows Microsoft Access 2002 for Windows Handout: 2 Academic Computing Support Information Technology Services Tennessee Technological University February 2004 1. Opening the File In the PC labs, from the Start

More information

Chapter 2 Autodesk Asset Locator... 3

Chapter 2 Autodesk Asset Locator... 3 Contents Chapter 2 Autodesk Asset Locator....................... 3 Supported Operating Systems....................... 3 Installing Autodesk Asset Locator..................... 4 Define a Search...............................

More information

To complete this database, you will need the following file:

To complete this database, you will need the following file: = CHAPTER 3 Access More Skills 14 Create Macros A macro is a set of saved actions that you can use to automate tasks. For example, a macro can open several database objects with a single click, or display

More information

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3 74029ftoc.qxd:WroxPro 9/27/07 1:40 PM Page xiii Acknowledgments Introduction x xxv Part I: Programming Access Applications 1 Chapter 1: Overview of Programming for Access 3 Writing Code for Access 3 The

More information

More Skills 14 Use a Query to Find Unmatched Data. To complete this database, you will need the following file:

More Skills 14 Use a Query to Find Unmatched Data. To complete this database, you will need the following file: CHAPTER 3 Access More Skills 14 Use a Query to Find Unmatched Data Unmatched data is a condition where the data in one field does not have a corresponding value in a related table. The Find Unmatched Query

More information

AudaEnterprise Gold User Guide

AudaEnterprise Gold User Guide Table of Contents 1. Introduction 3 2. Getting Started with Assessments 3 2.1 Creating an assessment 3 2.2 Copying an assessment 4 2.3 Opening an assessment 5 3. The Assessment Job Log 5 4. Working on

More information

Intermediate Microsoft Access 2010

Intermediate Microsoft Access 2010 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet & MS Access database Create Relationships Create a Form with a Subform Create Action Queries Create Command Buttons Create a Switchboard

More information

Outlook tips for road warriors

Outlook tips for road warriors Outlook 2000/2002: Tips for road warriors You use Outlook to send and receive e-mail and access your calendar and contacts when you re at the office, but what about when you re on the road? Don t worry

More information

Productivity Tools Objectives 1

Productivity Tools Objectives 1 Productivity Tools Objectives 1 Word 2003 Understand Microsoft Office Word 2003 Launch Microsoft Office Word 2003 Open Documents Understand The Working Screen Experiment With The Working Screen Navigate

More information

Collections. Learning Objectives. In this Job Aid, you will learn how to:

Collections. Learning Objectives. In this Job Aid, you will learn how to: Collections Learning Objectives In this Job Aid, you will learn how to: 1 Create a new Collection page 3 2 Add content to an existing Collection page 6 3 View the content in a Collection page 9 4 Order

More information

Publishing Electronic Portfolios using Adobe Acrobat 5.0

Publishing Electronic Portfolios using Adobe Acrobat 5.0 Step-by-Step Publishing Electronic Portfolios using Adobe Acrobat 5.0 2002, Helen C. Barrett Here is the process we will use to publish a digital portfolio using Adobe Acrobat. The portfolio will include

More information

Switchboard. Creating and Running a Navigation Form

Switchboard. Creating and Running a Navigation Form Switchboard A Switchboard is a type of form that displays a menu of items that a user can click on to launch data entry forms, reports, queries and other actions in the database. A switchboard is typically

More information

Administrator s Guide

Administrator s Guide Administrator s Guide 1995 2011 Open Systems Holdings Corp. All rights reserved. No part of this manual may be reproduced by any means without the written permission of Open Systems, Inc. OPEN SYSTEMS

More information

Intro to Workflow Part One (Configuration Lab)

Intro to Workflow Part One (Configuration Lab) Intro to Workflow Part One (Configuration Lab) Hyland Software, Inc. 28500 Clemens Road Westlake, Ohio 44145 Training.OnBase.com 1 Table of Contents OnBase Studio & Workflow... 2 Log into OnBase Studio...

More information

Installation Manual. Fleet Maintenance Software. Version 6.4

Installation Manual. Fleet Maintenance Software. Version 6.4 Fleet Maintenance Software Installation Manual Version 6.4 6 Terri Lane, Suite 700 Burlington, NJ 08016 (609) 747-8800 Fax (609) 747-8801 Dossier@dossiersystemsinc.com www.dossiersystemsinc.com Copyright

More information

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

More information

ACCESS 2007 ADVANCED

ACCESS 2007 ADVANCED ACCESS 2007 ADVANCED Welcome! Thank you for choosing WWP as your learning and development provider. We hope that your programme today will be a stimulating, informative and rewarding experience. Our highly

More information

Microsoft Office Excel 2010: Advanced. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2010: Advanced. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2010: Advanced Course Length: 1 Day Course Overview This course builds on the skills and concepts taught in Excel 2010: Intermediate. Students will work with advanced formulas, as

More information

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Outlook 2010 Quick Start Guide Getting Started File Tab: Click to access actions like Print, Save As, etc. Also to set Outlook options. Ribbon: Logically organizes Command Buttons onto Tabs and Groups

More information

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager Vector Issue Tracker and License Manager - Administrator s Guide Configuring and Maintaining Vector Issue Tracker and License Manager Copyright Vector Networks Limited, MetaQuest Software Inc. and NetSupport

More information

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved.

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com, info@nicelabel.com English Edition Rev-0910 2009 Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com Head Office Euro Plus d.o.o. Ulica Lojzeta Hrovata

More information

Stellar Phoenix Outlook PST Repair - Technician User Guide

Stellar Phoenix Outlook PST Repair - Technician User Guide Stellar Phoenix Outlook PST Repair - Technician 8.0.0.0 User Guide Overview Stellar Phoenix Outlook PST Repair - Technician offers a complete solution to repair damaged Microsoft Outlook Personal Storage

More information

Remote Process Explorer

Remote Process Explorer Remote Process Explorer Getting Started LizardSystems 2 Table of Contents Introduction 5 Installing Remote Process Explorer 5 Before starting the application 5 Starting the application 6 Main window 7

More information

Join Queries in Cognos Analytics Reporting

Join Queries in Cognos Analytics Reporting Join Queries in Cognos Analytics Reporting Business Intelligence Cross-Join Error A join is a relationship between a field in one query and a field of the same data type in another query. If a report includes

More information

PISCES Installation and Getting Started 1

PISCES Installation and Getting Started 1 This document will walk you through the PISCES setup process and get you started accessing the suite of available tools. It will begin with what options to choose during the actual installation and the

More information

Background. $VENDOR wasn t sure either, but they were pretty sure it wasn t their code.

Background. $VENDOR wasn t sure either, but they were pretty sure it wasn t their code. Background Patient A got in touch because they were having performance pain with $VENDOR s applications. Patient A wasn t sure if the problem was hardware, their configuration, or something in $VENDOR

More information

Outlook Quick Start Guide

Outlook Quick Start Guide Getting Started Outlook 2013 Quick Start Guide File Tab: Click to access actions like Print, Save As, etc. Also to set Outlook Options. Quick Access Toolbar: Add your mostused tool buttons to this customizable

More information

ERC: Portal Favorites Advanced Options Quick Reference Guide

ERC: Portal Favorites Advanced Options Quick Reference Guide When you have created Portal Favorites for frequently visited areas of the Employee Resource Center (ERC) there are additional preferences you can set. This QRG will provide you with several options for

More information

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key Getting started with Ms Access 2007 Getting Started Customize Microsoft Office Toolbar The Ribbon Quick Access Toolbar Navigation Tabbed Document Window Viewing Primary Key Composite Key Foreign Key Table

More information

Attix5 Pro Storage Platform Console

Attix5 Pro Storage Platform Console Attix5 Pro Storage Platform Console V7.0.1 User Manual for Microsoft Windows Your guide to managing the Attix5 Pro backup environment using the Storage Platform Console. 0 Copyright notice and proprietary

More information