UNIT 2 ADVANCED FEATURES OF VISUAL BASIC 6.0

Size: px
Start display at page:

Download "UNIT 2 ADVANCED FEATURES OF VISUAL BASIC 6.0"

Transcription

1 UNT 2 ADVANCED FEATURES OF VSUAL BASC 6.0 Structure 2.0 dentification of Some Advanced Features of Visual Basic Objectives 2.2 Employment of Features and Some More Examples Simple Animation Using ActiveX Drag and Drop Linking to Database 2.4 Summary 2.0 DENTFCATON OF SOME ADVANCED FEATURES OF VSUAL BASC 6.0 More About Visual Basic Controls Here are some detailed description of some important terms and components that you will come across. Students are advised to go through them very carefully. Forms Specifies that the coiltained controls take part in a form. t is a window or dialog box. Forms are containers for controls. A multiple-document interface (MD) form can also act as a container for child forms and some controls. Following are some of the characteristics of forms: List of Parameters Constant Value Description VbModal 1 Modal form VbModeless 0 Modeless form

2 Windows Programming using Visual Hasic 6.0 Arrange Method for MD (Multi Document nterface) Forms Constant Value Description VbCascade 0 Cascade all nonminimized MD child forms VbTileHorizontal 1 Horizontally tile all nonminimized MD child forms VbTileVertical 2 Vertically tile all ~lonminimized MD child forms VbArrangecons 3 Arrange icons for minimized MD child forms Windowstate Property Constant Value Description VbNormal 0 Normal VbMinimized 1 Minimized V bmaximized 2 Maximized Tool box Pointer mage box Text box Frame + i - General "&@, Label Check box List box Timer File list box Picture box $. d Vertical scroll Horizontal scroll +-. Directory list box Drive list box + Line LE ata control Provides a set of controls/tools from which tools can be picked and placed on the form at design time. Tool bars and Menu bars t provides quick access to commomly used commands in the programming environment. Tool bar Menu Bar

3 Project Explorer L)isplays a hierarchical list of the projects and all of the items contained in a project. Advanced Features of Visual Basic 6.0 Window Elements View Code Displays the Code window so you can write and edit code associated with the selected item. View Object Displays the Object window for the selected item, an existing form, module, ActiveX object, or user control Toggle Folders Hides and shows the object folders while still showing the individual items contained within them. List window Lists the all loaded projects and the items included in each project. Project. s The project and items contained within it are: Forms b All the.frm files associated with the project. Modules 4 All the.bas modules for the project. Class Modules All the.cls files for the project.

4 Windows Programming using Visual Rasic 6.0 User All user controls for the project. User All document objects,.dob files, in the project. Property Pages ActiveX Designers All property pages,.pag files, in the project. --m All designers,.dsr files, in the project. Related Documents Lists all documents to which you want a pointer. The path to the document is stored rather than the document itself. When you click View Object, Visual Basic searches the registry for the document type and executes the appropriate open command. You can place any valid document type in the project. Resources Lists all of the resources you have in your project. Note: A check mark to the left of a filename in the Project Explorer indicates that the file is checked out of a version control project, and currently has readlwrite status. The check mark is only displayed if you are connected to a version control program, such as Microsoft Visual Sourcesafe, which is included with the Enterprise Edition of Visual Basic. Modal and Modeless dialog boxes Dialog boxes are either modal or modeless. A modal dialog box must be closed (hidden or unloaded) before you can continue working with the rest of the application. For example, a dialog box is modal if it requires you to click OK or Cancel before you can switch to another form or dialog box. The About dialog box in Visual Basic is modal. Dialog boxes that display important messages should always be modal- that is, the user should always be required to close the dialog box or respond to its message before proceeding. Modeless dialog boxes let you shift the focus between the dialog box and another form without having to close the dialog box. You can continue to work elsewhere in the current application while the dialog box is displayed. Modeless dialog boxes are rare. From the Edit menu, the Find dialog

5 box in Visual Basic is an example of a modeless dialog box. Jse nodel less dialog boxes to display AdV""C"' Fcatures of frequently used commands or information. Visual Basic 6.0 To display a form as a modal dialog box Use the Sliow method with a style argument of vbmodal (a constant for the value 1). For example: ' Display form 1 as a modal dialog. Form 1.Show vbmodal To clisplay a form as a modeless dialog box Use the Show method without a style argument. For example: ' Display form1 as a modeless dialog. Form.Show Note: f a form is displayed as modal, the code following tlie Show method is not executed until tlie dialog box is closed. However. when a form is shown as modeless, the code following the Show method is executed immediately after tlie form is displayed. The Sliow method lias ariotlier optional argument. owner tliat can be used to specify a parent-child relationship for a form. You can pass the name of a form to this argument to make that form the owner of the new form. To clisplay a form as a child of another form Use the Show method with both style and owner arguments. For example: ' Display form 1 as a modeless child of formmain. Form 1.Show vbmodeless, formmain Using the owner argument with the Sliow method ensures tliat the dialog box will be minimized when it's parent is minimized. or unloaded should the parent form be closed. SD or MD nterface Two different styles are available for the Visual Basic DE: single document interface (SD) or multiple doculnents interface (MDT). With the SD option, all of the DE windows are free to be ~iioved anywhere on screen; as long as Visual Basic is the current application. they will remain on top of any other applications. With the MDJ option, all of the DE windows are contained within a single resizable parent window. Using the Common Dialog Control The common dialog control provides a standard set of dialog boxes for operations such as opening and saving files, setting print options, and selecting colors and fonts. The control also has the ability to display Help by running the Windows Help engine.

6 Windows Programming sing Visual Basic 6.0 The colnmon dialog control provides an interface between Visual Basic and tlie routines in tlie Microsoft Windows dynamic-link library Commdlg.dl1. To create a dialog box using this control, Commdlg.dl1 must be in your Microsoft Wi~idows \System directory. You use the common dialog control in your application by adding it to a form and setting its properties. The dialog displayed by the control is determined by the methods of tlie control. At run time, a dialog box is displayed or the Help engine is executed when the appropriate method is invoked; at design time, the common dialog control is displayed as an icon on a form. This icon can't be sized. The common dialog control allows you to display these commonly used dialog boxes: Open Save As Color Font Print To use the common dialog control 1. f you haven't already done so, add tlie common dialog control to the toolbox by selecting Components from the Project menu. Locate and select the control in the Controls tabbed dialog, then click tlie OK button. 2. On the toolbox, click the CommonDialog control and draw it on a form. When you draw a common dialog control on a form, it automatically resizes itself. Like tlie timer control. tlie common dialog control is invisible at run time. 3. At run time, use the appropriate method. as listed in the following table, to display the desired dialog. Method SliowOpen SliowSave ShowColor SliowFont ShowPrinter ShowHelp Dialog displayed Open Save As Color Font Print nvokes Windows Help i Control An ob-ject you can place on a form that has its own set of recognized properties, methods, and events. You use controls to receive user input, display output, and trigger event procedures. You can manipulate most controls using methods. Some controls are interactive (responsive to user actions), while others are static (accessible only tlirough code). 32

7 Module Code in Visual Basic is stored in modules. There are three kinds of modules: form, standard, and class. Advanced Features of Visual Basic 6.0 Simple applications can consist ofjust a single form, and all of the code in the application resides in that form module. As your applications get larger and more sophisticated, you add additional forms. Eventually you might find that there is common code you want to execute in several forms. You don't want to duplicate the code in both forms, so you create a separate module containing a procedure that implements the common code. This separate module should be a standard module. Over time, you can build up a library of modules containing shared procedures. Each standard, class, and form module can contain: Declarations. You can place constant, type, variable, and dynamic-link library (DLL) procedure declarations at the module level of form, class or standard modules. Procedures. A Sub, Function, or Property procedure contains pieces of code that can be executed as a unit. These are discussed in the section "Procedures" later in this chapter. Form Modules Form modules (.FRM file name extension) are the foundation of most Visual Basic applications. They can contain procedures that handle events, general procedures, and form-level declarations of variables, constants, types, and external procedures. f you were to look at a form module in a text editor, you would also see descriptions of tlie form and its controls, including their property settings. The code that you write in a form ~rlodule is specific to the particular application to which the form belongs; it might also reference other forrns or objects within that application. Standard Modules Standard modules (.BAS file name extension) are containers for procedures and declarations commonly accessed by other modules within the application. They can contain global (available to the whole application) or module-level declarations of variables, constants, types, external procedures, and global procedures. 'The code that you write in a standard module isn't necessarily tied to a particular application; if you're careful not to reference forms or controls by name, a standard module can be reused in many different applications. Class Modules Class rnodules (.CLS file name extension) are the foundation of object-oriented programming in! Visual Basic. You can write code in class modules to create new objects. These new objects can include your own customized properties and methods. Actually, forms are just class modules that can have controls placed on them and can display form windows. i For More nformation For information about writing code in class modules, see "Programming with Objects." Note: The Professional and Enterprise editions of Visual Basic also include ActiveX Documents, ActiveX Designers, and User Controls. These introduce new types of modules with different file name extensions. From the standpoint of writing code, these modules should be considered the same as form modules.

8 Windows Programming 2.1 sing Visual Basic 6.0 OBJECTVES After going through this unit, you will be able to: Discuss the advanced features involved in Visual basic; Develop the applications using some animation techniques; Link a database to the application. 2.2 EMPLOYMENT OF FEATURES AND SOME MORE EXAMPLES Simple Animation Using ActiveX Let us learn an important feature of Windows Programming i.e., Application 1: Program for implementing a small animation clip in an application. Step 1. Start with a normal standard exe project as shown below:

9 st! MOPU!M aql u! qel ~ OJ~UO~ wo~j 13afo~d ~nol 01 xao-~~~~auroa :MOlaq UMOqS a19 luauodwo3 t! ppv 't dais

10 Windows Programming using Visual Basic 6.0 Press 'apply' button and you will get 2 new controls in the toolbox the 'up-down control' and the 'animation control' as shown below: Step 4. Now add this control to your form just by clicking over the animation icon in the toolbox and drawing a rectangle by dragging the mouse on the form. And you will get an image of the control as shown in the figure below:

11 -r : Step 5. Similarly include two command buttons in the form as shown below: Advanced Features of Visual Basic 6.0 "' 't f, _ *, 8,. :$ * 35,q i Z $,. '6 Step 6. And now, change the caption of button1 and button2 as 'play' and 'stop' respectively, as :; shown below: i :i,';

12 Windows Programming using Visual Step 7. Now add another component 'common dialog control' in your project which is used to open some common dialog boxes as open, save as and print etc. Step 8. Now add this new component to the form as shown below:

13 Step 9. Now double click on the comlnalid button1 to move to the code window and write down the following code that is written in the click event of the comlnand button 1 as sllown below: ;\clvanced Feat~~res of Vis~~al Basic 6.0 i.comondialogl.filter = "*.AVm Co~monDialoyl. ShowOpen Anlmationl. Open ComonDialogl. FlleJ~une Animationl.Play Form1 <f%rml) Step 10. Now write the code in the click event of the command button2 as shown below: 4 CommonD~alogl. ShowOpen 1 1,-' ' r Fglrrns

14 Windows Proerammlne usini Visual Ba C Step. Now run the program and you will get the following screen: Now, when you press the play Button you'll get the following screen Arrouuhit Arrowrnis Baskt Btttvn9 Blowup Choose any AV format file and press open. And you will get the same loaded form with a new running animation file which you have choosen. To stop the aninimation you can press the stop button. And close the application bypressing the close button of the form.

15 2.2.2 Drag and Drop Let us move on one step further with an important utility of windows programming muvccu Features of Visual Basic 6.0 Application 2: Create an application, that copies a file from one location to any other location by simulating windows explorer (i.e. implementing drag and drop feature). Stepl. Load VB with a standard exe option and you will get the following screen. Step 2. Now, click the DragListBox control from the toolbox as shown in the figure:

16 Windows Programming using Visual Basic 6.0 Note: The control you have just now included in your form is having a name1'drive " by default. This is important because we will be using this name in the coding. Step 3. Now, stretch the form length, and include another control named "DirListBox". Note: The control of DirListBox, which you have inserted, is having the property Name set to "Dirl " as shown in the properties colunin. P Step 4. Now, insert one more component each of the same controls (DirListBox) which you have inserted, just adjacent to it, as shown in the figure below:

17 Note: Tlie two new controls DirListBox and DriveListBox which have been inserted in this step Featul-es of are named as "Dirl" and "Drive2" respectively. Visual Basic 6.0 Step 5. Now, insert a new control named "FileListBox" from the ToolBox in the fonn as shown below in tlie figure: Note: The new co~ltrol.included in having its Name property set to "Filel" Now, our aim is to i~iiplementhe copy operation, when we drag a file from "Filel" and drop it in "Dir2". So, to do this, following steps need to be followed: Choose any available source drive from "Drivel" (from which file has to be copied) by simply clicking over it. Choose tlie source directory (from which file has to be copied) from "Dirl" by double clicking on the directory shown in the Directory Box. Repeat the first two steps exactly for "Drive2" and "Dir2" instead of "Drivel" and "Dirl" respectively, for selecting the destination (where the file is to be copied). Select a file from the FileListBox (Filel) by clicking on that file, and drag (moving the mouse with left mouse button pressed) the file to "Dir2" and drop (release the left mouse button) it there. This operation, as given above clearly indicate that we have to write code for the following events: We have to write code for the change event of drivel i.e. in case tlie drive is selected in tlie drive ~ box, changes have to be reflected in the directory box since the directory box is reflecting the directories contained in that drive. Then, we need to override the change event of dirl, since appropriate files need to be reflected in the FileListBox "Filel ".

18 Windows Programming using Visual Basic 6.0 Similarly, we need to write code for the change event of dirve2 i.e., in case the destination drive is selected in the drive box, only those files, which are in the drive need to be shown in the destination Directory Box. Hence, we have to write the code for change event of Drivel, Dirl, and Drive2 as shown below: Private Sub Dirl-Change ( ) File 1.Path = Dir 1 End Sub Private Sub Drive 1-Change ( ) Dirl.Path = Drivel Elid Sub Private Sub Drive2 Change ( ) Dir2.Path = ~rive2- End Sub Now, when we click on a file in the File1 FileListBox, and drag (i.e., an event of mouse move with left button pressed) the file, the Drag Method of the Filel should be called as shown below: Private Sub File1 - MouseMove (Button As nteger, Shift As nteger, X As Single. Y As Single) File l.dragcon = Loadpicture ("C:\Program Files\Microsoft Visual Studio\Vfp98\ - Tools\filer\Filer.ico") f Button = Then File 1.Drag 1 End f End Sub Now, once we start the drag operation from Filel, it has to be dropped at destination directory box i.e. DragDrop Event of Dir2 needs to be called. Here we call the FileCopy method which copies the source file name given as first argument to the destination given as the second argument. And, ultimately, call the source's Drag method to end the drag operation as shown below: Private Sub Dir2-DragDrop (Source As Control, X As Single, Y As Single) Dim st As String st = "\" and Source.FileName FileCopy Source.Path and st, Dir2.Path and st Source.Drag 0 End Sub The Figure shown below depicts the working of the program. As you can see that the source drive, source directory, source file, destination drive and the destination directory has been chosen. t is shown clearly, the change of shape of mouse icon as the mouse is being dragged towards the destination directory box.

19 2.2.3 Linking to Database Let us move on one step further with an important utility of windows programming. Advanced Features of Visual Basic 6.0 Step 1. First, let us take a simulated example of a batch of students studying at GNOU. We allknow, that has to be a file maintained in order to keep track of student details. Now, the structure or we may call the fields to be included in the file may be as follows: Field Data Type Width Rollno Character 5 Name Character 5 0 Age Numeric 2 Sex Character 1 So, before we start with the actual coding, we make a simulation of a database named "dbl" and create a table called "student master" in it through Access 97. So, move to Start button then to programs and then click on Microsoft Access as shown below: Step 2. What we get as the first screen of Microsoft Access is shown below:

20 \Yindows Progrs''ming using Visual Here, on choosing the "Blank Database" option and by clicking on "Ok" button, we get a dialog window as shown below: Step 3. You will get a dialog window as shown above, in which you have to give the name to your new database i.e. "dbl". And then, click on "Create" button. Step 4. We get a blank database created automatically, as shown in the figure below. Now, we have to create a table similar to what has been discussed in step 1 on this application, by clicking on the "New" button..step 5. Here, we get another dialog box in, which choose a method in which we are going to create a new table. So, choose "Design View"; that is the easiest way to create a table amongst all. And then click "Ok" button.

21 Step 6. Now what we get is a window as showing three fields: Field Name, Data Type, and Description. Advanced Features of Visual Basic 6.0 Step 7. n the above given window, fill the information about the table structure discussed in step 1, as shown below: Step 8. n this step you have to choose the rollno field by clicking over it and then make it a "Primary Key", because rollno has to unique and a non Null value. Do this as shown below:

22 Yindows Programming l~sieg Visual Hnsic 6.0 Step 9. Click on the close button as shown below: Step 10. The moment the close button is pressed, you'll get a verification dialog window as show below. Press the "Yes" button. Step 11. On pressing "yes" in the above window, you'll get the following dialogbox, where you need to give the new table a name. Type in "student master" as shown below and press 'LOK": Step 12. On pressing "ok" in the above window you'll get the following window showing the inclusion of the new table wich you have just now created.

23 So, now what you get is a database named "db.mdbm in "C:\My Documents" directory, with a table Advanced Features of named "Student Master" with no records in it. Visual Basic 6.0 Step 13. Now, fill in the records in the table and close the window as shown below in the figure: Step 14. Click the close button of the main application window now, as shown below: Now, the database is ready. Only part left is to provide a front end through Visual Basic and link it with the database. As done in the following steps: r Step 15. Open the new Standard Exe application in VB and you'll get a following screen.

24 Windows Programming using Visual Basic 6.0 Step 16. nsert Labels, TextBoxes (for input and display) and a new control. called "Data Control" as shown in the figure below: Step 17. Change the captions of the components as follows: Label 1 to Rol lno Label2 to Name Label3 to Age Label4 to Sex Delete the caption of all the Text Boxes And change the caption of data control to "student master file" as shown below:

25 i Advanced Features of Step 18. Change the "DatabaseName" property to "C:\My Documents\db.mdb directly, or choose the path where you saved the database, by pressing the ellpses button(...). As Visual Basic 6.0 shown below in the figure.! Step 19. As you have selected the database name in the previous step, its time to select the table which you will be linking your form to. To do this, click on the "RecordSource" property ' of the Data Control, and you'll get all the tables listed, which are a part of the database to which this data control is linked with. P Since only one table was created in the database, only one table is shown in the list. Step 20. Select all the text boxes and change the Datasource property to "Datal", since all the text boxes have to be linked with the database that is linked with data control 'Datal'.

26 \Yindows Programming using Visual nrsic 6.0 Step 2 1. Select the 'textl' textbox and change the DataField property. When yo11 click on the data field property,it will show you a drop downlist as shown in the figure below. All you have to do is to, choose the field with which you want this text box to be linked with. So choose 'rollno' from the list. Step 22. Again, click on the next text box i.e., text2 and change the DataField property of it. So choose 'name' from the list. MS sans Serif weooooooae Step 23. Again, click on the next text box,i.e. text3 and change the DataField property of it. So choose 'age' from the list.

27 i Step 24. Again, click on the next text box,i.e. text4 and change the DataField property of it. So Features of choose 'sex' from the list. Visual Basic 6.0 So, now every control in the form 1 is linked with some or the other component to import the data from the database dbl.mdb which we created in Microsoft Access. Now, save the project and the form at any desired location and run the application as shown in the steps given as follows. Step 25. Now, to start the application click on the start button on the toolbar as shown below:

28 Windows Programming using Visual Raaic 6.n Step 26. The figure below shows how application provides a front end, to navigate the records in the table 'student master' of database 'dbl' created Ms-Access. -+ next last You can click on the navigation buttons to navigate the records in the database. 2.3 SUMMARY This unit establishes a better understanding over some advanced components used in visual programming environment. The form works as a basic interface between the user and the application. t is to be noted that the form acts as a container for all the components that were discussed. Toolbox provides different controls, which can be used on the form for better GU's.

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box.

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box. Visual Basic Concepts Hello, Visual Basic See Also There are three main steps to creating an application in Visual Basic: 1. Create the interface. 2. Set properties. 3. Write code. To see how this is done,

More information

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB Visual Programming 1. What is Visual Basic? Visual Basic is a powerful application development toolkit developed by John Kemeny and Thomas Kurtz. It is a Microsoft Windows Programming language. Visual

More information

Computer Science 110. NOTES: module 8

Computer Science 110. NOTES: module 8 Computer Science 110 NAME: NOTES: module 8 Introducing Objects As we have seen, when a Visual Basic application runs, it displays a screen that is similar to the Windows-style screens. When we create a

More information

GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4

GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4 GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4 Subject Name VISUAL BASIC Sr.No Course content 1. 1. Introduction to Visual Basic 1.1. Programming Languages 1.1.1. Procedural,

More information

Using Visual Basic Studio 2008

Using Visual Basic Studio 2008 Using Visual Basic Studio 2008 Recall that object-oriented programming language is a programming language that allows the programmer to use objects to accomplish a program s goal. An object is anything

More information

SEE5A/ Visual Basic Unit : I - V

SEE5A/ Visual Basic Unit : I - V SEE5A/ Visual Basic Unit : I - V 1 1 UNIT I : Syllabus Customizing a Form Writing Simple Programs Tool Box Creating Controls Name Property Command Button, Access Keys Image Controls, Text Boxes, Labels

More information

Creating a Text Frame. Create a Table and Type Text. Pointer Tool Text Tool Table Tool Word Art Tool

Creating a Text Frame. Create a Table and Type Text. Pointer Tool Text Tool Table Tool Word Art Tool Pointer Tool Text Tool Table Tool Word Art Tool Picture Tool Clipart Tool Creating a Text Frame Select the Text Tool with the Pointer Tool. Position the mouse pointer where you want one corner of the text

More information

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the use

More information

OpenForms360 Validation User Guide Notable Solutions Inc.

OpenForms360 Validation User Guide Notable Solutions Inc. OpenForms360 Validation User Guide 2011 Notable Solutions Inc. 1 T A B L E O F C O N T EN T S Introduction...5 What is OpenForms360 Validation?... 5 Using OpenForms360 Validation... 5 Features at a glance...

More information

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15 10 Classes 2 nd Exam Review Lesson - 15 Introduction Windows 7, previous version of the latest version (Windows 8.1) of Microsoft Windows, was produced for use on personal computers, including home and

More information

WINDOWS NT BASICS

WINDOWS NT BASICS WINDOWS NT BASICS 9.30.99 Windows NT Basics ABOUT UNIVERSITY TECHNOLOGY TRAINING CENTER The University Technology Training Center (UTTC) provides computer training services with a focus on helping University

More information

Getting to Know PowerPoint. Use IT+

Getting to Know PowerPoint. Use IT+ Getting to Know PowerPoint Use IT+ Introduction PowerPoint 2013 is a presentation software that allows you to create dynamic slide presentations. Slideshows can include animation, description, images,

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

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming Introduction to the Visual Studio.NET Integrated Development Environment IDE CSC 211 Intermediate Programming Visual Studio.NET Integrated Development Environment (IDE) The Start Page(Fig. 1) Helpful links

More information

ECDL Module 6 REFERENCE MANUAL

ECDL Module 6 REFERENCE MANUAL ECDL Module 6 REFERENCE MANUAL Presentation Microsoft PowerPoint XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 6 (USING POWERPOINT XP) - MANUAL 6.1 GETTING STARTED... 4 6.1.1 FIRST STEPS WITH

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents The Specification Manager 3 Specification Manager - Overview

More information

Developing Interactive Lectures with PowerPoint 2007

Developing Interactive Lectures with PowerPoint 2007 Intermediate PowerPoint Developing Interactive Lectures with PowerPoint 2007 [Type the document subtitle] 2 P age Table of Contents Customize Slide Theme and Background... 2 Apply Animated Effects... 3

More information

1. AUTO CORRECT. To auto correct a text in MS Word the text manipulation includes following step.

1. AUTO CORRECT. To auto correct a text in MS Word the text manipulation includes following step. 1. AUTO CORRECT - To auto correct a text in MS Word the text manipulation includes following step. - STEP 1: Click on office button STEP 2:- Select the word option button in the list. STEP 3:- In the word

More information

Introduction. Getting Started. Selecting a Template. 1 of 1

Introduction. Getting Started. Selecting a Template. 1 of 1 1 of 1 Introduction Visual materials are one of the most effective means of communicating a message. They can give a presentation a professional quality. Visuals help a speaker to be well prepared, organized,

More information

19. VB Project and Menu Design

19. VB Project and Menu Design 19. VB Project and Menu Design 19.1 Working with Projects As you develop an application, you work with a project to manage all the different files that make up the application. A VB project consists of:

More information

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet 1. Macros 1.1 What is a macro? A macro is a set of one or more actions

More information

LESSON A. The Splash Screen Application

LESSON A. The Splash Screen Application The Splash Screen Application LESSON A LESSON A After studying Lesson A, you should be able to: Start and customize Visual Studio 2010 or Visual Basic 2010 Express Create a Visual Basic 2010 Windows application

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

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button PROCEDURES LESSON 1: CREATING WD DOCUMENTS WITH HEADERS AND FOOTERS Starting Word 1 Click the Start button 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Word 2010 1 Click

More information

Publisher 2016 Foundation SAMPLE

Publisher 2016 Foundation SAMPLE Publisher 2016 Foundation Publisher 2016 Foundation Microsoft Publisher 2016 Foundation - Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied

More information

Microsoft Publisher 2013 Foundation. Publisher 2013 Foundation SAMPLE

Microsoft Publisher 2013 Foundation. Publisher 2013 Foundation SAMPLE Microsoft Publisher 2013 Foundation Publisher 2013 Foundation Microsoft Publisher 2013 Foundation - Page 2 2013 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may

More information

PowerPoint Tutorial 2: Adding and Modifying Text and Graphic Objects 2013

PowerPoint Tutorial 2: Adding and Modifying Text and Graphic Objects 2013 PowerPoint Tutorial 2: Adding and Modifying Text and Graphic Objects Microsoft Office 2013 2013 Objectives Insert a graphic from a file Insert, resize, and reposition clip art Modify the color and shape

More information

Study Guide. PCIC 3 B2 GS3- Key Applications-Excel. Copyright 2010 Teknimedia Corporation

Study Guide. PCIC 3 B2 GS3- Key Applications-Excel. Copyright 2010 Teknimedia Corporation Study Guide PCIC 3 B2 GS3- Key Applications-Excel Copyright 2010 Teknimedia Corporation Teknimedia grants permission to any licensed owner of PCIC 3 B GS3 Key Applications-Excel to duplicate the contents

More information

Publisher 2016 Foundation. North American Edition SAMPLE

Publisher 2016 Foundation. North American Edition SAMPLE Publisher 2016 Foundation Publisher 2016 Foundation North American Edition Microsoft Publisher 2016 Foundation - Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this

More information

VISUAL BASIC 6.0 OVERVIEW

VISUAL BASIC 6.0 OVERVIEW VISUAL BASIC 6.0 OVERVIEW GENERAL CONCEPTS Visual Basic is a visual programming language. You create forms and controls by drawing on the screen rather than by coding as in traditional languages. Visual

More information

BASICS OF MOTIONSTUDIO

BASICS OF MOTIONSTUDIO EXPERIMENT NO: 1 BASICS OF MOTIONSTUDIO User Interface MotionStudio combines draw, paint and animation in one easy easy-to-use program gram to save time and make work easy. Main Window Main Window is the

More information

17. Introduction to Visual Basic Programming

17. Introduction to Visual Basic Programming 17. Introduction to Visual Basic Programming Visual Basic (VB) is the fastest and easiest way to create applications for MS Windows. Whether you are an experienced professional or brand new to Windows

More information

INTRODUCTION TO VISUAL BASIC 2010

INTRODUCTION TO VISUAL BASIC 2010 INTRODUCTION TO VISUAL BASIC 2010 Microsoft Visual Basic is a set of programming tools that allows you to create applications for the Windows operating system. With Visual Basic, even a beginner can create

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager How to define model elements simply? In Sparx Systems Enterprise Architect, use the document-based Specification Manager to create elements

More information

Tutorials. Lesson 3 Work with Text

Tutorials. Lesson 3 Work with Text In this lesson you will learn how to: Add a border and shadow to the title. Add a block of freeform text. Customize freeform text. Tutorials Display dates with symbols. Annotate a symbol using symbol text.

More information

CANVASES AND WINDOWS

CANVASES AND WINDOWS CHAPTER 8 CANVASES AND WINDOWS CHAPTER OBJECTIVES In this Chapter, you will learn about: Canvas and Window Concepts Page 262 Content Canvases and Windows Page 277 Stacked Canvases Page 287 Toolbar Canvases

More information

Horizon Launcher Configuration Guide

Horizon Launcher Configuration Guide Horizon Launcher Configuration Guide Windows NT and Windows 2000 are registered trademarks of Microsoft Corporation. All other product or company names are trademarks or registered trademarks of their

More information

CSDA Screen Capture. for Alpha Five (and QreportBuilder) Created by. Computer Systems Design & Associates 61 Cheryl Lane Waltham, MA

CSDA Screen Capture. for Alpha Five (and QreportBuilder) Created by. Computer Systems Design & Associates 61 Cheryl Lane Waltham, MA CSDA Screen Capture for Alpha Five (and QreportBuilder) Created by Computer Systems Design & Associates 61 Cheryl Lane Waltham, MA 02451-2185 www.csda1.com Release Version 1.07 Last Update April 18, 2010

More information

Sema Foundation ICT Department. Lesson - 18

Sema Foundation ICT Department. Lesson - 18 Lesson - 18 1 Manipulating Windows We can work with several programs at a time in Windows. To make working with several programs at once very easy, we can change the size of the windows by: maximize minimize

More information

How to Create Greeting Cards using LibreOffice Draw

How to Create Greeting Cards using LibreOffice Draw by Len Nasman, Bristol Village Ohio Computer Club If you want to create your own greeting cards, but you do not want to spend a lot of money on special software, you are in luck. It turns out that with

More information

MMF2 on a 800x600 display

MMF2 on a 800x600 display MMF2 on a 800x600 display Multimedia Fusion 2 was designed for a professional use, with a 1024x768 display in mind. While there is an upward trend to higher resolutions there are still a large number of

More information

Chapter 2 Using Slide Masters, Styles, and Templates

Chapter 2 Using Slide Masters, Styles, and Templates Impress Guide Chapter 2 Using Slide Masters, Styles, and Templates OpenOffice.org Copyright This document is Copyright 2007 by its contributors as listed in the section titled Authors. You can distribute

More information

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Table of Contents Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Series Chart with Dynamic Series Master-Detail

More information

Publisher 2013 Foundation SAMPLE

Publisher 2013 Foundation SAMPLE Publisher 2013 Foundation Publisher 2013 Foundation Microsoft Publisher 2013 Foundation - Page 2 2013 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied

More information

MICROSOFT POWERPOINT 2016 Quick Reference Guide

MICROSOFT POWERPOINT 2016 Quick Reference Guide MICROSOFT POWERPOINT 2016 Quick Reference Guide PowerPoint What is it? What s new in PowerPoint 2016? PowerPoint is a computer program that allows you to create, edit and produce slide show presentations.

More information

Creating a PowerPoint Presentation

Creating a PowerPoint Presentation powerpoint 1 Creating a PowerPoint Presentation Getting Started 1. Open PowerPoint from the "Start" "Programs" Microsoft Office directory. 2. When starting PowerPoint, it usually starts with a new blank

More information

To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox.

To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox. To learn more about the Milestones window choose: Help Help Topics Select the Index tab and type in the feature. For Example toolbox. 1 of 12 CHOOSE THE DATES TAB TO: 1. Set the schedule s Date Range.

More information

Windows Me Navigating

Windows Me Navigating LAB PROCEDURE 11 Windows Me Navigating OBJECTIVES 1. Explore the Start menu. 2. Start an application. 3. Multi-task between applications. 4. Moving folders and files around. 5. Use Control Panel settings.

More information

Adding Dynamics. Introduction

Adding Dynamics. Introduction M-Graphic s User s Manual 11-1 Chapter 11 Adding Dynamics Introduction This chapter explains how to make single or multiple dynamic connections from display objects to points from OPC data servers. This

More information

Getting Started. Microsoft QUICK Source 7

Getting Started. Microsoft QUICK Source 7 Microsoft QUICK Windows Source 7 Getting Started The Windows 7 Desktop u v w x u Icon links to a program, file, or folder that is stored on the desktop. v Shortcut Icon links to a program, file, or folder

More information

Introduction. Table Basics. Access 2010 Working with Tables. Video: Working with Tables in Access To Open an Existing Table: Page 1

Introduction. Table Basics. Access 2010 Working with Tables. Video: Working with Tables in Access To Open an Existing Table: Page 1 Access 2010 Working with Tables Introduction Page 1 While there are four types of database objects in Access 2010, tables are arguably the most important. Even when you're using forms, queries, and reports,

More information

build a digital portfolio in WebPlus X4

build a digital portfolio in WebPlus X4 How to build a digital portfolio in WebPlus X4 Get started Open Serif WebPlus and select Start New Site from the Startup Wizard. WebPlus will open a blank website for you. Take a few moments to familiarise

More information

Publisher 2010 Foundation. Publisher 2010 Foundation Level SAMPLE

Publisher 2010 Foundation. Publisher 2010 Foundation Level SAMPLE Publisher 2010 Foundation Publisher 2010 Foundation Level Microsoft Publisher 2010 Foundation - Page 2 1995-2012 Cheltenham Courseware Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document

More information

Building InfoMaker Styles and Actions

Building InfoMaker Styles and Actions CHAPTER 34 Building InfoMaker Styles and Actions About this chapter Contents This chapter explains how to build styles in PowerBuilder and provide them to InfoMaker users. Topic Page About form styles

More information

Full file at https://fratstock.eu Programming in Visual Basic 2010

Full file at https://fratstock.eu Programming in Visual Basic 2010 OBJECTIVES: Chapter 2 User Interface Design Upon completion of this chapter, your students will be able to 1. Use text boxes, masked text boxes, rich text boxes, group boxes, check boxes, radio buttons,

More information

MS WORD INSERTING PICTURES AND SHAPES

MS WORD INSERTING PICTURES AND SHAPES MS WORD INSERTING PICTURES AND SHAPES MICROSOFT WORD INSERTING PICTURES AND SHAPES Contents WORKING WITH ILLUSTRATIONS... 1 USING THE CLIP ART TASK PANE... 2 INSERTING A PICTURE FROM FILE... 4 FORMATTING

More information

Dive Into Visual C# 2008 Express

Dive Into Visual C# 2008 Express 1 2 2 Dive Into Visual C# 2008 Express OBJECTIVES In this chapter you will learn: The basics of the Visual Studio Integrated Development Environment (IDE) that assists you in writing, running and debugging

More information

You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different

You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different pages or, as described in working with anchors, to different sections of

More information

How to create interactive documents

How to create interactive documents Adobe InDesign Guide How to create interactive documents You can use Adobe InDesign to create dynamic web content or interactive documents. InDesign supports export to web-ready HTML or interactive PDF.

More information

Lesson 4 Customize the ToolBox

Lesson 4 Customize the ToolBox Lesson 4 Customize the ToolBox In this lesson you will learn how to: Change the toolbox to be a Floating toolbox or a toolbox anchored on the Sidebar. Change the combo ToolBox size and highlighting. Change

More information

Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7

Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7 Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7 Objectives Start Windows and view the desktop Use pointing devices Use the Start button Use the taskbar Work with windows 2 Objectives Use

More information

Section 5. Pictures. By the end of this Section you should be able to:

Section 5. Pictures. By the end of this Section you should be able to: Section 5 Pictures By the end of this Section you should be able to: Use the Clip Gallery Insert and Delete Pictures Import Pictures Move, Resize and Crop Pictures Add Borders and Colour Wrap Text around

More information

PowerPoint Intermediate 2010

PowerPoint Intermediate 2010 PowerPoint Intermediate 2010 I. Creating a Slide Master A. Using the design feature of PowerPoint essentially sets up similar formatting for all of your slides within a presentation. However, there are

More information

Beginning PowerPoint XP for Windows

Beginning PowerPoint XP for Windows Beginning PowerPoint XP for Windows Tutorial Description This course introduces you to the PowerPoint program basics for creating a simple on-screen presentation. Intended Audience Individuals interested

More information

Program and Graphical User Interface Design

Program and Graphical User Interface Design CHAPTER 2 Program and Graphical User Interface Design OBJECTIVES You will have mastered the material in this chapter when you can: Open and close Visual Studio 2010 Create a Visual Basic 2010 Windows Application

More information

Select Objects for Use

Select Objects for Use System In TNTgis you select geospatial data for viewing and analysis using the Select objects window (which may have varying names depending on the context). The upper part of the window has several tabbed

More information

The Basics of PowerPoint

The Basics of PowerPoint MaryBeth Rajczewski The Basics of PowerPoint Microsoft PowerPoint is the premiere presentation software. It enables you to create professional presentations in a short amount of time. Presentations using

More information

CHAPTER 2: USE WINDOWS 7 TO MANAGE FILES AND PROGRAMS AND TO BROWSE THE INTERNET

CHAPTER 2: USE WINDOWS 7 TO MANAGE FILES AND PROGRAMS AND TO BROWSE THE INTERNET CHAPTER 2: USE WINDOWS 7 TO MANAGE FILES AND PROGRAMS AND TO BROWSE THE INTERNET Quick Summary A program is a set of instructions that a computer uses to accomplish a task, such as word processing, accounting,

More information

Microsoft Office PowerPoint Chapter 2. with Illustrations and

Microsoft Office PowerPoint Chapter 2. with Illustrations and Microsoft Office 2007 PowerPoint Chapter 2 Creating a Presentation with Illustrations and Shapes Objectives Create slides from a blank presentation Change views to review a presentation Change slide layouts

More information

MICROSOFT WORD 2010 BASICS

MICROSOFT WORD 2010 BASICS MICROSOFT WORD 2010 BASICS Word 2010 is a word processing program that allows you to create various types of documents such as letters, papers, flyers, and faxes. The Ribbon contains all of the commands

More information

2 The Stata user interface

2 The Stata user interface 2 The Stata user interface The windows This chapter introduces the core of Stata s interface: its main windows, its toolbar, its menus, and its dialogs. The five main windows are the Review, Results, Command,

More information

Word 2013 Quick Start Guide

Word 2013 Quick Start Guide Getting Started File Tab: Click to access actions like Print, Save As, and Word Options. Ribbon: Logically organize actions onto Tabs, Groups, and Buttons to facilitate finding commands. Active Document

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

AutoCollage 2008 makes it easy to create an AutoCollage from a folder of Images. To create an AutoCollage:

AutoCollage 2008 makes it easy to create an AutoCollage from a folder of Images. To create an AutoCollage: Page 1 of 18 Using AutoCollage 2008 AutoCollage 2008 makes it easy to create an AutoCollage from a folder of Images. To create an AutoCollage: 1. Click on a folder name in the Image Browser. 2. Once at

More information

Getting Started Guide. Chapter 11 Graphics, the Gallery, and Fontwork

Getting Started Guide. Chapter 11 Graphics, the Gallery, and Fontwork Getting Started Guide Chapter 11 Graphics, the Gallery, and Fontwork Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or

More information

A Guided Tour of Doc-To-Help

A Guided Tour of Doc-To-Help A Guided Tour of Doc-To-Help ii Table of Contents Table of Contents...ii A Guided Tour of Doc-To-Help... 1 Converting Projects to Doc-To-Help 2005... 1 Using Microsoft Word... 10 Using HTML Source Documents...

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

Limnor Studio User s Guide

Limnor Studio User s Guide L i m n o r S t u d i o U s e r G u i d e - P a r t I 1 Limnor Studio User s Guide Part I Objects Contents I. Introduction... 3 II. Programming Entity Object... 4 II.1. Everything is an object... 4 II.2.

More information

Chapter 9 Getting Started with Impress

Chapter 9 Getting Started with Impress Getting Started Guide Chapter 9 Getting Started with Impress OpenOffice.org's Presentations OpenOffice.org Copyright This document is Copyright 2005 2007 by its contributors as listed in the section titled

More information

Table of Contents. Contents

Table of Contents. Contents Spring 2009 R.A. Table of Contents Contents Opening PowerPoint... 2 PowerPoint 2007 Interface... 2 PowerPoint Features... 2 Creating, Opening and Saving Presentations... 3 Creating a Presentation... 3

More information

Caja File Manager. Desktop User Guide

Caja File Manager. Desktop User Guide Caja File Manager Desktop User Guide Desktop User Guide» Working with Files This chapter describes how to use the Caja file manager. Introduction Spatial Mode Browser Mode Opening Files Searching For Files

More information

PowerPoint Tips and Tricks

PowerPoint Tips and Tricks PowerPoint Tips and Tricks Viewing Your Presentation PowerPoint provides multiple ways to view your slide show presentation. You can access these options either through a toolbar on your screen or by pulling

More information

PowerPoint Basics. Objectives. PowerPoint Basics. Just what are we trying to do with this software anyway?

PowerPoint Basics. Objectives. PowerPoint Basics. Just what are we trying to do with this software anyway? PowerPoint Basics 1. Presentation basics 2. Creating your title slide 3. Adding new slides 4. Adding bulleted text 5. Changing slide layouts 6. Inserting clip art and images 7. Hyper linking to other slides,

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

MS Publisher County of Henrico Public Libraries

MS Publisher County of Henrico Public Libraries MS Publisher 2013 I. About Publisher A. What is it? Publisher is a desktop publishing program that assists you in designing and producing professional documents that combine text, graphics, illustrations,

More information

How to Use Serif WebPlus 10

How to Use Serif WebPlus 10 How to Use Serif WebPlus 10 Getting started 1. Open Serif WebPlus and select Start New Site from the Startup Screen 2. WebPlus will start a blank website for you. Take a few moments to familiarise yourself

More information

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1 DRAFT Table of Contents About this manual... ix About CuteSITE Builder... ix Getting Started... 1 Setting up... 1 System Requirements... 1 To install CuteSITE Builder... 1 To register CuteSITE Builder...

More information

Quick Start Guide. ARIS Architect. Version 9.8 Service Release 2

Quick Start Guide. ARIS Architect. Version 9.8 Service Release 2 ARIS Architect Version 9.8 Service Release 2 October 2015 This document applies to ARIS Version 9.8 and to all subsequent releases. Specifications contained herein are subject to change and these changes

More information

This section provides an overview of the features available within the Standard, Align, and Text Toolbars.

This section provides an overview of the features available within the Standard, Align, and Text Toolbars. Using Toolbars Overview This section provides an overview of the features available within the Standard, Align, and Text Toolbars. Using toolbar icons is a convenient way to add and adjust label objects.

More information

FrontPage Help Center. Topic: FrontPage Basics

FrontPage Help Center. Topic: FrontPage Basics FrontPage Help Center Topic: FrontPage Basics by Karey Cummins http://www.rtbwizards.com http://www.myartsdesire.com 2004 Getting Started... FrontPage is a "What You See Is What You Get" editor or WYSIWYG

More information

PowerPoint 2002 Manual

PowerPoint 2002 Manual PowerPoint 2002 Manual Internet and Technology Training Services Miami-Dade County Public Schools Contents How to Design Your Presentation...3 PowerPoint Templates...6 Formatting Your Slide Show...7 Creating

More information

How to create a prototype

How to create a prototype Adobe Fireworks Guide How to create a prototype In this guide, you learn how to use Fireworks to combine a design comp and a wireframe to create an interactive prototype for a widget. A prototype is a

More information

Microsoft PowerPoint 2007 Tutorial

Microsoft PowerPoint 2007 Tutorial Microsoft PowerPoint 2007 Tutorial Prepared By:- Mohammad Murtaza Khan I. T. Expert Sindh Judicial Academy Contents Getting Started... 5 Presentations... 5 Microsoft Office Button... 5 Ribbon... 6 Quick

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Quick Start Guide. ARIS Architect. Version 9.7

Quick Start Guide. ARIS Architect. Version 9.7 ARIS Architect Version 9.7 October 2014 This document applies to ARIS Version 9.7 and to all subsequent releases. Specifications contained herein are subject to change and these changes will be reported

More information

Start PowerPoint Create a Title Page Using WordArt Editing WordArt Inserting Text Boxes Adding A Background To Your Slide Adding Transitions

Start PowerPoint Create a Title Page Using WordArt Editing WordArt Inserting Text Boxes Adding A Background To Your Slide Adding Transitions Start PowerPoint Create a Title Page Using WordArt Editing WordArt Inserting Text Boxes Adding A Background To Your Slide Adding Transitions Apply Order and Timing to Slide Presentation Inserting a New

More information

PowerPoint Slide Basics. Introduction

PowerPoint Slide Basics. Introduction PowerPoint 2016 Slide Basics Introduction Every PowerPoint presentation is composed of a series of slides. To begin creating a slide show, you'll need to know the basics of working with slides. You'll

More information

Chapter 4: Single Table Form Lab

Chapter 4: Single Table Form Lab Chapter 4: Single Table Form Lab Learning Objectives This chapter provides practice with creating forms for individual tables in Access 2003. After this chapter, you should have acquired the knowledge

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