Tampilkan postingan dengan label Office Development. Tampilkan semua postingan
Tampilkan postingan dengan label Office Development. Tampilkan semua postingan

Jumat, 07 Agustus 2009

2007 Office System


2007 Office System

To view Office Talk columns relating to the Microsoft Office 2007 system, click the articles to the left in the table of contents.

Microsoft Office Talk


Microsoft Office Talk

The Microsoft Office System delivers a powerful collection of integrated programs, servers, services, tools, and technologies that can help developers build robust business solutions to streamline processes and connect people to information and to one another.

If you are new to Office development, and want to learn more about the possibilities offered by the Microsoft Office System to develop solutions, this section includes columns by long-time Microsoft Office developers and members of the Microsoft Office Developer Documentation team.

Office 2003

Office 2003

To view Office Talk columns pertaining to Microsoft Office 2003 Editions, click the articles to the left in the table of contents.

Office 2003

Microsoft Office 2000


Microsoft Office 2000

The Microsoft Office System delivers a powerful collection of integrated programs, servers, services, tools, and technologies that can help developers build robust business solutions to streamline processes and connect people to information and to one another.

If you are new to Office development, and want to learn more about the possibilities offered by the Microsoft Office System to develop solutions, explore this set of helpful links to get you up to speed.

· Access 2000

· Excel 2000

· FrontPage 2000

· FrontPage 2000 Server Extensions

· Office 2000

· Office 2000

· Outlook 2000

· Project 2000

· Visio 2000

· Word 2000

Related Library Sections

· Microsoft SharePoint Products and Technologies

· Visual Studio Tools for the Microsoft Office System Reference

Microsoft Office Developer Center

· Microsoft Office Developer Center

· Understanding Office Development

· How To Center

· SDK Documentation

· Interactive Developer Map

· 2007 Microsoft Office System for Architects

· Microsoft Office Business Applications

· Microsoft Visual Studio Developer Center

· Microsoft SharePoint Server 2007 Developer Center

Additional Resources

· Windows SharePoint Services Developer Center

· MSDN Evaluation Center

· Microsoft Learning Portal

· MSDN Magazine

· Microsoft Office Online

· Microsoft Office Products

· Microsoft Office TechCenter

· MSDN Virtual Labs

The Microsoft Office System delivers a powerful collection of integrated programs, servers, services, tools, and technologies that can help developers build robust business solutions to streamline processes and connect people to information and to one another.

If you are new to Office development, and want to learn more about the possibilities offered by the Microsoft Office System to develop solutions, explore this set of helpful links to get you up to speed.

· Access 2000

· Excel 2000

· FrontPage 2000

· FrontPage 2000 Server Extensions

· Office 2000

· Office 2000

· Outlook 2000

· Project 2000

· Visio 2000

· Word 2000

Related Library Sections

· Microsoft SharePoint Products and Technologies

· Visual Studio Tools for the Microsoft Office System Reference

Microsoft Office Developer Center

· Microsoft Office Developer Center

· Understanding Office Development

· How To Center

· SDK Documentation

· Interactive Developer Map

· 2007 Microsoft Office System for Architects

· Microsoft Office Business Applications

· Microsoft Visual Studio Developer Center

· Microsoft SharePoint Server 2007 Developer Center

Additional Resources

· Windows SharePoint Services Developer Center

· MSDN Evaluation Center

· Microsoft Learning Portal

· MSDN Magazine

· Microsoft Office Online

· Microsoft Office Products

· Microsoft Office TechCenter

· MSDN Virtual Labs

Microsoft Access Description

Microsoft Access Description


Microsoft Access Description
  • Microsoft Access is a powerful program to create and manage your databases. It has many built in features to assist you in constructing and viewing your information. Access is much more involved and is a more genuine database application than other programs such as Microsoft Works.

    This tutorial will help you get started with Microsoft Access and may solve some of your problems, but it is a very good idea to use the Help Files that come with Microsoft Access, or go to Microsoft's web site located at http://microsoft.com/office/access/default.htm

    First of all you need to understand how Microsoft Access breaks down a database. Some keywords involved in this process are: Database File, Table, Record, Field, Data-type. Here is the Hierarchy that Microsoft Access uses in breaking down a database. for further assistance.



Database File: This is your main file that encompasses the entire database and that is saved to your hard-drive or floppy disk.
Example) StudentDatabase.mdb Table:A table is a collection of data about a specific topic. There can be multiple tables in a database.
Example #1) Students
Example #2) Teachers Field:Fields are the different categories within a Table. Tables usually contain multiple fields.
Example #1) Student LastName
Example #2) Student FirstName Datatypes:Datatypes ar

e the properties of each field. A field only has 1 datatype.
FieldName) Student LastName
Datatype) Text

This tutorial will help you get started with Microsoft Access and may solve some of your problems, but it is a very good idea to use the Help Files that come with Microsoft Access (or any program you use for that matter), or go to Microsoft's web site located at http://microsoft.com/office/access/default.htm for further assistance.

Starting Microsoft Access







Creating New, and Opening Existing Databases
he above picture gives you the option to:

Back to top




Create a database using the Database Wizard

  1. When Microsoft Access first starts up, a dialog box is automatically displayed with options to create a new database or open an existing one. If this dialog box is displayed,

    click Access Database Wizards, pages, and projects and then click OK.

    If you have already opened a database or closed the dialog box that displays when Microsoft Access starts up, click New Database on the
    toolbar.

  2. On the Databases tab, double-click the icon for the kind of database you want to create.

  3. Specify a name and location for the database.

  4. Click Create to start defining your new database



Create a database without using the Database Wizard


  1. When Microsoft Access first starts up, a dialog box is automatically displayed with options to create a new database or open an existing one. If this dialog box is displayed, click Blank Access Database, and then click OK.

    If you have already opened a database or closed the dialog box that displays when Microsoft Access starts up, click New Database on the toolbar, and then double-click the Blank Database icon on the General tab.

  2. Specify a name and location for the database and click Create. (Below is the screen that shows up following this step)

Tables

A table is a collection of data about a specific topic, such as students or contacts. Using a separate table for each topic means that you store that data only once, which makes your database more efficient, and reduces data-entry errors.



Microsoft Access Description

  • Formatting a field to look a specific way (HINT: You do not need to assign a field a specific set of characters if you do this)
  • Selecting a value from a dropdown box with a set of values that you assign to it. This saves you from typing it in each time

  • Back to top

    Relationships

    After you've set up multiple tables in your Microsoft Access database, you need a way of telling Access how to bring that information back together again. The first step in this process is to define relationships between your tables. After you've done that, you can create queries, forms, and reports to display information from several tables at once.

    A relationship works by matching data in key fields - usually a field with the same name in both tables. In most cases, these matching fields are the primary key from one table, which provides a unique identifier for each record, and a foreign key in the other table. For example, teachers can be associated with the students they're responsible for by creating a relationship between the teacher's table and the student's table using the TeacherID fields.

    Having met the criteria above, follow these steps for creating relationships between tables.

    1. In the database window view, at the top, click on Tools ---> Relationships
    2. Select the Tables you want to link together, by clicking on them and selecting the Add Button
    3. Drag the primary key of the Parent table (Teacher in this case), and drop it into the same field in the Child table (Student in this case.)
      Relationships
    4. Select Enforce Referential Integrity
      Referential Integrity
      • When the Cascade Update Related Fields check box is set, changing a primary key value in the primary table automatically updates the matching value in all related records.
      • When the Cascade Delete Related Records check box is set, deleting a record in the primary table deletes any related records in the related table
    5. Click Create and Save the Relationship

    Back to top

    Forms

    A form is nothing more than a graphical representation of a table. You can add, update, delete records in your table by using a form. NOTE: Although a form can be named different from a table, they both still manipulate the same information and the same exact data. Hence, if you change a record in a form, it will be changed in the table also.

    A form is very good to use when you have numerous fields in a table. This way you can see all the fields in one screen, whereas if you were in the table view (datasheet) you would have to keep scrolling to get the field you desire.


    Back to top

    Create a Form using the Wizard

    It is a very good idea to create a form using the wizard, unless you are an advanced user and know what you are doing. Microsoft Access does a very good job of creating a form using the wizard. The following steps are needed to create a basic form:

    1. Switch to the Database Window. You can do this by pressing F11 on the keyboard.
    2. Click on the Forms button under Objects on the left side of screen
    3. Double click on Create Form Using Wizard
    4. On the next screen select the fields you want to view on your form. Most of the time you would select all of them.
    5. Click Next
    6. Select the layout you wish
    7. Click Next
    8. Select the style you desire...HINT: if you plan on printing your form, I suggest you use a light background to save on printer toner and ink
    9. Click Next
    10. Give you form a name, and select Open the Form and enter information
    11. Select Finish
    12. You should see your form. To adjust the design of your form, simply hit the design button (same as with the tables), and adjust your form accordingly

    Back to top

    Reports

    A report is an effective way to present your data in a printed format. Because you have control over the size and appearance of everything on a report, you can display the information the way you want to see it.


    Back to top

    Create a Report using the Wizard

    As with the Form, it is a very good idea to create a report using the wizard, unless you are an advanced user. Microsoft Access does a very good job using the wizard to create reports.

    1. Switch to the Database Window. You can do this by pressing F11 on the keyboard.
    2. Click on the Reports button under Objects on the left side of screen
    3. Double click on Create Report Using Wizard
    4. On the next screen select the fields you want to view on your form. Most of the time you would select all of them.
    5. Click Next
    6. Select if you would like to group your files. Keep repeating this step for as many groupings as you would like.
    7. Click Next
    8. Select the layout and the paper orientation you desire
    9. Click Next
    10. Select the style you desire...HINT: if you plan on printing your report, I suggest you use a light background to save on printer toner and ink
    11. Click Next
    12. Give you report a name, and select Preview the Report
    13. Select Finish
    14. You should see your report. To adjust the design of your report, simply hit the design button (same as with the tables), and adjust your report accordingly

    Back to top

    Creating Mail Merge Labels using a Wizard

    Microsoft Access lets you create Mailing Labels for your database that you have. To do this do the following:

    1. Switch to the Database Window. You can do this by pressing F11 on the keyboard.
    2. Click on the Reports button under Objects on the left side of screen
    3. Click on New
      Mail Merge
    4. Select Label Wizard and the table you would like to get your information from.
      Label Wizard
    5. Click OK
    6. Select the layout of your labels
    7. Click Next
    8. Select the font size and color you want on each label
    9. Click Next
    10. Select how you want your label to look
    11. Click Next
    12. Select how you want your labels sorted
    13. Give your label report a name and preview it

    Entering Data Manipulating Data
    Back to top

    Advanced Table Features w/Microsoft Access
  • Assigning a field a specific set of characters
  •