Working with your database

Slides:



Advertisements
Similar presentations
MS-Word XP Lesson 7.
Advertisements

Data Base. Objective Become familiar with database terminology. Create a project to display data for a single database table. Use a DataGrid control.
Access 2007 ® Use Databases How can Microsoft Access 2007 help you to get and stay organized?
Access Custom Forms & Reports. Topics  Designer Skills  Tab Order (Forms)  Copying Properties  Adding a Control  Adding Page Breaks  Adding Tab.
Chapter 12: ADO.NET and ASP.NET Programming with Microsoft Visual Basic.NET, Second Edition.
Access Tutorial 7 Creating Custom Reports
Microsoft Visual Basic 2012 CHAPTER TEN Incorporating Databases with ADO.NET.
Access Tutorial 4 Creating Forms and Reports
Office 2003 Post-Advanced Concepts and Techniques M i c r o s o f t Word Project 8 Working with Macros and Visual Basic for Applications (VBA)
MS-Access XP Lesson 5. Creating a Query with Expression Builder Eg. Consider the following table. Table Name: Overtime Fields & Data types: Emp No (Number),
Creating Custom Reports. Objectives View, filter, and copy report information in Report view Modify a report in Layout view Modify a report in Design.
® Microsoft Access 2010 Tutorial 7 Creating Custom Reports.
Analysing Data with Excel Importing Data from a Text File To import data from a text file: 1.Start Excel. 2.Click File, click New, click Workbook,
Copyright © 2012 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin TECHNOLOGY PLUG-IN T8 DECISION MAKING USING ACCESS.
1 Data Bound Controls II Chapter Objectives You will be able to Use a Data Source control to get data from a SQL database and make it available.
How to Setup MS Word for a Research Paper Steps and Procedures.
Office 2003 Advanced Concepts and Techniques M i c r o s o f t Access Project 5 Enhancing Forms with OLE Fields, Hyperlinks, and Subforms.
FIRST COURSE Access Tutorial 4 Creating Forms and Reports.
Pasewark & Pasewark 1 Access Lesson 5 Creating and Modifying Reports Microsoft Office 2007: Introductory.
Office Management Tools II Ms Saima Gul. Office Management Tools II Ms Saima Gul.
Office 2003 Post-Advanced Concepts and Techniques M i c r o s o f t Access Project 7 Advanced Report and Form Techniques.
Creating a Flyer By: Stephen Lenceski. Select Flyer.
Lesson 12 Adding Validation To The Movie Database.
Microsoft Access 2010 Chapter 8 Advanced Form Techniques.
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.
Using Microsoft Access You can use the database we just created to create address labels, if your printer will accept label stationery (most will) First.
Microsoft Access Lesson 2 Lexington Technology Center February 13, 2003 Bob Herring On the Web at
Pasewark & Pasewark 1 Access Lesson 5 Creating and Modifying Reports Microsoft Office 2007: Introductory.
10.11 Data Manipulation 3 Reports. You will need… Specimen 2007 Paper 2 Task C (a PDF) q 43 Read this question carefully before you start The database.
Copyright 2007, Information Builders. Slide 1 Flex your Dashboard Muscle with WebFOCUS Flex Enable John Gogoly Senior Systems Engineer June, 2008.
Microsoft Access Intro Class 9 Report Design.
1 Database Design and Development: A Visual Approach © 2006 Prentice Hall Chapter 12 DATABASE DESIGN AND DEVELOPMENT: A VISUAL APPROACH Chapter 12 Accessing.
Grade 4 Science.  -Click Start  -Click Programs  -Click IHMC Cmap Tools  -Click Cmap Tools.
McGraw-Hill/Irwin © The McGraw-Hill Companies, All Rights Reserved TECHNOLOGY PLUG-IN T8 Decision Making Using Access.
Copyright 2007, Paradigm Publishing Inc. ACCESS 2007 Chapter 6 BACKNEXTEND 6-1 LINKS TO OBJECTIVES Using the Report Button Using the Report Button Print.
Double click here to add event title Double click here to add event date Double click here to add event time Double click here to add event location.
Know your computer Make a Folder Copy from Word to Composer Format the Font Change the Alignment Format the Background Format the Colors Insert a Picture.
1 After completing this lesson, you will be able to: Create a form using AutoForm. Create a form using the Form Wizard. Add controls to a form. Modify.
Database Applications – Microsoft Access Lesson 6B Advanced Features on Custom Forms 1.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 11 Creating Web Applications and Writing Data to a Database.
Copyright 2007, Paradigm Publishing Inc. ACCESS 2007 Chapter 5 BACKNEXTEND 5-1 LINKS TO OBJECTIVES Using the Form Button Using the Form Button Form Views.
PowerPoint Grades 3-5.
Using MS Access for SQL CIS 523 Fall 2009 McCoey.
Creating Data Base & Sql Data Source
Integrating Office 2003 Applications and the World Wide Web
VB 2010 Pertemuan 10.
Microsoft Access 2007 – Level 2
Title Subtitle.
Plug-In T7: Problem Solving Using Access 2007
Incorporating Databases with ADO.NET
Access Project 8 Using Visual Basic for Applications (VBA) and Creating Multi-Page Forms.
Creating and Using a Database
Enhancing Forms with OLE Fields, Hyperlinks, and Subforms
Creating Custom Reports
Access Tutorial 4 Creating Forms and Reports
Incorporating Databases with ADO.NET
Chapter 7 Advanced Form Techniques
Access Tutorial 7 Creating Custom Reports
Database Applications – Microsoft Access
Adding Record To Your Database
Creating Data Base & Sql Data Source
Lesson 4 Creating a page with Web Matrix
Courses Tab Press the Courses tab
Searching Your Database
Access Tutorial 4 Creating Forms and Reports
Working with your database
Tutorial 7 Creating Custom Reports
CREATING QUERIES, FORMS, AND REPORTS Section 3
Presentation transcript:

Working with your database Lesson 9 Working with your database

What are Code Builders? Working with databases are a breeze with four code builders to work with your data

How Code Builders Work Manipulating your database is basically the job of these four Code Builders Create a new ASP.NET file and call it Custom Click on code Click on Custom Controls in the Toolbox

SELECT Data Method SELECT-creates a function that uses a SQL SELECT statement to access a database table and returns the data Drag the SELECT Data Method on your work area Click the down arrow aside of Database: Select the Movie Database and click OK

Construct a SELECT query Click the box where the * is Click Next This is what you have on your screen

Click on Test Query to view your database

Creating a method Type AllBond Click Finish

Back to Design Click on Design Tab Drag a DataGrid to the workspace

DataGrid Properties Scroll down to the DataSource Properties for DataGrid1 Type AllBond() which was the method that we just created

Page Properties Click the down arrow to the right of the DataGrid1 title and select Page

Page Properties This is the last step to bind your database to DataGrid1 Click on the lightning bolt which is Event

Load Double Click over the Load Property

Code to bind Type DataGrid1.DataBind() Press F5 to view Congratulations! Remember you could have only selected the fields that you wanted to show

Here’s your database

Changing your view Click on the Design Tab on your workspace Click on your DataGrid1 Scroll down and Select Classic1 and click OK Press F5 to view

Custom Design your DataGrid Click on DataGrid Now click Property Builder located to the right of AutoFormat Click on Format, DataGrid

More Changes Change Forecolor to Navy Change Back Color to Silver Change Font Name to Aerial Black Change Font size to Medium and click Bold Click ok Press F5 to view