Form and Graphical User Interfaces. Lesson plan More about queries More about entering data into a table Form.

Slides:



Advertisements
Similar presentations
Course Form In the main window (cf. Figure 2), click on Forms, then double-click on Create form by using wizard. Follow the sequence of actions below.
Advertisements

1 After completing this lesson, you will be able to: Create a database. Create a table using the Table Wizard. Create and modify a table in Design view.
Computer Concepts BASICS 4th Edition
Pasewark & Pasewark Microsoft Office XP: Introductory Course 1 INTRODUCTORY MICROSOFT ACCESS Lesson 4 – Finding and Ordering Data.
Access Lesson 2 Creating a Database
Guide to Oracle10G1 Introduction To Forms Builder Chapter 5.
Maintenance Modifying the data –Add records –Delete records –Update records Modifying the design –Add fields into tables –Remove fields from a table –Change.
This presentation contains the following: -the availability and need menu options -the add option Mark Smith.
Automating Tasks With Macros. 2 Design a switchboard and dialog box for a graphical user interface Database developers interact directly with Access.
Creating And Maintaining A Database. 2 Learn the guidelines for designing databases When designing a database, first try to think of all the fields of.
FIRST COURSE Access Tutorial 2 Building a Database and Defining Table Relationships.
Chapter Extension 6 Using Microsoft Access © 2008 Pearson Prentice Hall, Experiencing MIS, David Kroenke.
Create Forms Lesson 5. Software Orientation Creating Forms A form is a database object –enter, edit, or display data from a table or query Providing.
Access Tutorial 10 Automating Tasks with Macros
Microsoft Access Database software. What is a database? … a database is an organized collection of data. A collection of data of similar information compiled.
From VS C# 2010 Programming, John Allwork 1 VS2010 C# Programming - DB intro 1 Topics – Database Relational - linked tables SQL ADO.NET objects Referencing.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 1 Committed to Shaping the Next Generation of IT Experts. Chapter 4: Create, Edit, and Perform.
Verify your data entry You could use data types and field properties for adding any validation on your date: EX: Data type: number : allow the user to.
1 Access Lesson 4 Creating and Modifying Forms Microsoft Office 2010 Introductory.
Form and Graphical User Interfaces. Lesson plan More about queries More about entering data into a table Form.
ACCESS Part 2. OBJECTIVES  Use the Form Wizard  Create a split form  Use Form Layout View  Add fields to a form  Modify form controls  Create calculations.
Exploring Microsoft Access 97 Chapter 1 Introduction to Microsoft Access: What Is A Database? Office graphic copyright by Microsoft Corp.
© 2008 The McGraw-Hill Companies, Inc. All rights reserved. ACCESS 2007 M I C R O S O F T ® THE PROFESSIONAL APPROACH S E R I E S Lesson 9 – Building Links,
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 2 1 Microsoft Office Access 2003 Tutorial 2 – Creating And Maintaining A.
MS-ACCESS BY SANGEETHA PARTHASARATHY Topics to be covered §Comparing Values in Selection Criteria §Calculating Values in a Query §Changing the appearance.
FIRST COURSE Access Tutorial 4 Creating Forms and Reports.
Chapter 4: Create, Edit, and Perform Calculations in Reports Exploring Microsoft Office Access 2007.
Key Applications Module Lesson 21 — Access Essentials
CSC 240 (Blum)1 Forms and Importing Data in Access.
Microsoft Access Intro Class 6 Relationships.
This is the first screen you will encounter. Select Blank Database.
XP Chapter 4 Succeeding in Business with Microsoft Office Access 2003: A Problem-Solving Approach 1 Collecting Data for Well-Designed Forms Chapter 4 “Making.
Course ILT Forms and queries Unit objectives Create forms by using AutoForm and the Form Wizard, and add or modify form headers and footers Open and enter.
Forms Using. 2  Plan a form  Create a form  Move and resize controls  Modify labels  Modify text boxes Objectives.
1 MIS309 Database Systems Introduction to Microsoft Access.
Microsoft Access 2002 Illustrated Complete Forms Using.
Access Lesson 2 Lesson Plans Michele Smith – North Buncombe High School, Weaverville, NC
VB for applications. Lesson Plan Fundamentals of VB VB for handling events in Access.
Chapter Fourteen Access Databases and SQL Programming with Microsoft Visual Basic th Edition.
CS 281 – Fall 2015 Lab 4 Parametric Query and Forms in MS Access.
Planning & Creating a Database By Ms. Naira Microsoft Access.
Pasewark & Pasewark Microsoft Office 2003: Introductory 1 INTRODUCTORY MICROSOFT ACCESS Lesson 4 – Finding and Ordering Data.
VAT Calculator program Controls Properties Code Results.
Unbound Form Form not tied directly to any fields in the database Must use SQL to “bind” the fields 1.
Access Lesson 9 Using Advanced Form Features Microsoft Office 2010 Advanced Cable / Morrison 1.
Classwork: Common Errors Primary keys: don’t forget them! Primary keys: choose the best one! – “Name” and “birthday” are not the best choices. – “Phone.
WEEK# 12 Haifa Abulaiha November 02,
Microsoft Access Prepared by the Academic Faculty Members of IT.
Using a Database Access97 Please use speaker notes for additional information!
Database Applications – Microsoft Access Lesson 6B Advanced Features on Custom Forms 1.
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 6 1 Microsoft Office Access 2003 Tutorial 6 – Creating Custom Forms.
Creating SQL Database file And Displaying a Database Table in a DataGridView.
Programming with Microsoft Visual Basic 2012 Chapter 14: Access Databases and SQL.
Copyright © 2014 Pearson Canada Inc. Ext. 5b-1 Copyright © 2014 Pearson Canada Inc. Application Extension 5b Using Microsoft Access Part 2: Using Information.
Student Manager Filters.
Developing Forms and Subforms.
Current outstanding balance
Access Tutorial 4 Creating Forms and Reports
MUNIS Payroll Training Time and Attendance Entry-Substitutes
Examples of Poor Primary Keys
Examples of Poor Primary Keys
IS 220 Databases Fundamentals
Access queries p.meade.
MODULE 7 Microsoft Access 2010
Database Applications – Microsoft Access
PHPMyAdmin.
Database Design Week 12.
Database 2.
Relationships While we are on the subject of Relationships, let’s take a quick look at them.
Presentation transcript:

Form and Graphical User Interfaces

Lesson plan More about queries More about entering data into a table Form

More about queries Action query to insert a new record into a table Queries -> choose the table -> right mouse click -> SQL View INSERT INTO [User] VALUES ('000001', ' ', '34 Lancaster Road', 'Glastonbury', '06033',

Entering data into table

Entering data

Entering data into table

Entering data

Form Data entry forms are the primary means of entering data into tables in the database. Graphical User Interfaces

Form Spread-sheet like view: Graphical user interface view

Why Form? Graphical user interface view offers: –Presenting data in an organized and attractive manner –Offering the ability to limit the number of fields that appear on the form and allow or preventing editing a specific value

Basic Transaction Processing Form Serves transaction processing applications which add new records, or editing existing records

Basic Transaction Processing Form Example: create a form to add a new record or view existing record to Employee table

Basic Transaction Processing Form

Using Design Form Window Form -> Create form in Design view

Using Design Form Window

Private Sub AddNewRecord_Click() On Error GoTo Err_AddNewRecord_Click Dim sqlStatement As String strStatement = "insert into [Employee] values('" + Me.userssn + "','" + Me.username + "'," + Me.usersalary + ");" DoCmd.RunSQL (strStatement) Exit_AddNewRecord_Click: Exit Sub

Create forms with more than one table

Adding Option Groups

Adding List boxes

Practice Create a form to add a new record and view existing records to Course table

Week 5 - Practice Change the Registration table so that every time, we add a new record, the list of available students (studentID, firstName, lastName) and courses (courseID, courseTitle)

Practice Create forms in section a and b of project 1, part 4