2Practicals Visual Basic 6.0

Size: px
Start display at page:

Download "2Practicals Visual Basic 6.0"

Transcription

1 2Practicals Visual Basic 6.0 Practical 1: 1. Navigation of Visual Basic Integrated Development Environment The Visual Basic IDE is made up of a number of components Menu Bar Tool Bar Project Explorer Properties window Form Layout Window Toolbox Form Designer Object Browser Code Window First of all, you have to launch Microsoft Visual Basic 6.In the Visual Basic 6 integrated development environment, a default form with the name Form1 will be available for you to work on your new project. Now, double click on Form1, the source code window for Form1 as shown in figure will appear. The top of the source code window consists of a list of objects and their associated events or procedures. In figure, the object displayed is Form and the associated procedure is Load. Vbforswedish.blogspot.com Page 1

2 Practical 2: Controls And Properties(1): Visual Basic Controls and Properties provide a simple means to quickly create rich interfaces for your Visual Basic applications. Controls on toolbar are shown in the picture: Properties can be set by highlighting the items in the right column then change them by typing or selecting the options available. Program to change shape This code will change the shape to a circle at runtime. Private Sub Form_Load() Shape1.Shape = 3 Vbforswedish.blogspot.com Page 2

3 Practical 3: empty. Controls And Properties(2): To calculate and to display the output on the label The two text boxes are used to accept inputs from the user and one of the labels will be used to display the sum of two numbers that are entered into the two text boxes. Besides, a command button is also programmed to calculate the sum of the two numbers using the plus operator. Draw Graphical User Interface 1. Insert two text boxes along with three labels and a command button. 2. As given in the figure. Attach Code 1. Double Click The command button, code window will appear. 2. Then write the following code in the code window. 3. Now run the program. Dim x As Integer, y As Integer x = Text1.Text y = Text2.Text Label3.Caption = Label3.Caption & x + y 4. An example output is given in the figure. Update Properties 1. Change label1.caption as Number1, label2.caption as Number2 and label3. Caption as Sum= 2. Change text1.text and text2.text to Vbforswedish.blogspot.com Page 3

4 Attach Code Double Click The command Practical 4: Creation of Label, Button and text Boxes: Label: It represents a standard Windows label. It is generally used to display some informative text on the GUI which is not changed during runtime. Textbox: It is used to take it input or display output to the user. Command Button: It is generally used to generate a Click event by providing a handler for the Click event. Print "Welcome " & Text1.Text button, code window will appear. Then write the following code in the code window. Now run the program. An example output is given in the 1.Put a label as label1, a text box as text1 to take input and a command button as command1 Update label1 caption Type your name? go to properties window select Font option, make style BOLD and size 14. Make text1.text = Change the caption of command1 to CLICK Figure 1 Practical 4 Vbforswedish.blogspot.com Page 4

5 Practical 5: Program that will show you a message "Welcome you are campus 3 student if your roll number satisfies the rule. 3. Place a label on the form. Dim x As Long Dim y As Long x = InputBox("Enter your Roll#?", "Campus Check") y = x \ If y = 3 Then MsgBox "Welcome you are campus 3 student" 1. Update label1 caption as Click button 2. Set caption of the button to Press. End If 1. Double Click button. 2. Write the following code in the click 3. Run the program. Vbforswedish.blogspot.com Page 5

6 Practical _6: Program that will input a number from user and will display weather it is positive, negative or zero? 3. Place a label on the form. 4. Place a text box on the form. 1. Update label1.caption as Enter a number to check? 2. Set button caption to check Nain Markaz-e-Taleem 1. Double Click button. 2. Write the following code in the click 3. Run the program Dim x As Integer x = Text1.Text If x > 0 Then MsgBox "Positive" ElseIf x < 0 Then MsgBox "Negative" Else MsgBox "Zero" End If Vbforswedish.blogspot.com Page 6

7 Practical _7: Write a program that will take your marks out of hundred and calculate your grade? 3. Place a label on the form. 4. Place a text box on the form. 1. Update label1.caption as Enter your marks to check your grade? 2. Set button caption to Grade 1. Double Click button. 2. Write the following code in the click Nain Markaz-e-Taleem Dim marks As Integer marks = Val(Text1.Text) Select Case marks Case Is > 80 MsgBox "Grade A" Case Is > 60 MsgBox "Grade B" Case Is > 40 MsgBox "Grade C" Case Else MsgBox "Fail" End Select Figure 2 Practical _7 Vbforswedish.blogspot.com Page 7

8 Practical 8: Write a program that will calculate the factorial of given number using while loop? 3. Place a label on the form. 4. Place a text box on the form. Nain Markaz-e-Taleem 1. Update label1.caption as Enter a number to get factorial? 2. Set button caption to factorial 3. Set text1.text= Figure 3 Practical 8 1. Double Click button. 2. Write the following code in the click Dim n As Integer, i As Integer, fact As Integer n = Text1.Text fact = 1 i = 1 While i <= n fact = fact * i i = i + 1 Wend MsgBox "Factorial" & fact Vbforswedish.blogspot.com Page 8

9 Practical 9: Write a program that displays first five odd numbers using FOR Next loop? 4. Set button caption to Show Odd 3. Double Click button. 4. Write the following code in the click Nain Markaz-e-Taleem Dim number as integer Print First Five ODD numbers: For number=1 to 10 step 2 Print number Next Figure 4 Practical9 Vbforswedish.blogspot.com Page 9

10 Practical 10: Add menus in an application. Change Background colors through menu options? Draw GUI and update properties: 2. Press CTRL+E or select Menu Editor from TOOLS menu to start a menu editor. 3. Enter Colors in caption and mnucolor in Name. The name of the menu will appear in lower box of menu editor. 4. Click next to add another menu. 5. Enter RED in caption field and mnured in name field and then do the same for Green and Yellow. 6. set shrot cut Ctrl+r for red, Ctrl+g for green and Ctrl+y for yellow. 5. Click the menu Colors->Red button. 6. Write the following code in the click Nain Markaz-e-Taleem Private Sub mnugreen_click() Form1.BackColor = vbgreen Private Sub mnured_click() Form1.BackColor = vbred Private Sub mnuyellow_click() Form1.BackColor = vbyellow Vbforswedish.blogspot.com Page 10

11 Practical 11: Write a program that will take your year of birth and return your age in years using function procedure? 3. Place a label on the form. 4. Place a text box on the form. 1. Set button caption to Age. 2. Set the caption of albel1 to Enter your Date of birth? 3. Set text1.text=. 4. Set format of text1.text to DATE. 1. Double Click button. 2. Write the following code in the click Dim birth As Date Dim yr As Integer birth = Text1.Text yr = age(birth) MsgBox "Your age is= " & yr Private Function age(b As Date) As Integer Dim cd As Date cd = Date age = DateDiff("yyyy", b, cd) End Function Vbforswedish.blogspot.com Page 11

The Control Properties

The Control Properties The Control Properties Figure Before writing an event procedure for the control to response to a user's input, you have to set certain properties for the control to determine its appearance and how it

More information

Programming with visual Basic:

Programming with visual Basic: Programming with visual Basic: 1-Introdution to Visual Basics 2-Forms and Control tools. 3-Project explorer, properties and events. 4-make project, save it and its applications. 5- Files projects and exercises.

More information

Visual Basic 6 Lecture 7. The List Box:

Visual Basic 6 Lecture 7. The List Box: The List Box: The function of the List Box is to present a list of items where the user can click and select the items from the list or we can use the List Box control as a simple memory to save data.

More information

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is InputBox( ) Function An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is A = InputBox ( Question or Phrase, Window Title, ) Example1: Integer:

More information

Angel International School - Manipay 1 st Term Examination November, 2015

Angel International School - Manipay 1 st Term Examination November, 2015 Angel International School - Manipay 1 st Term Examination November, 2015 Information & Communication Technology Grade 11A & C Duration: 3.00 Hours Part 1 Choose the most appropriate answer. 1) Find the

More information

Collaboration Tools. Student Guide. Copyright 2015 by Edmentum. All Rights Reserved.

Collaboration Tools. Student Guide. Copyright 2015 by Edmentum. All Rights Reserved. Collaboration Tools Student Guide Copyright 2015 by Edmentum. All Rights Reserved. Contents Introduction... 3 Viewing Collaborations... 3 Using the Whiteboard Tool... 4 Viewing a Video... 5 Viewing a Document...

More information

Function: function procedures and sub procedures share the same characteristics, with

Function: function procedures and sub procedures share the same characteristics, with Function: function procedures and sub procedures share the same characteristics, with one important difference- function procedures return a value (e.g., give a value back) to the caller, whereas sub procedures

More information

Angel International School - Manipay 1 st Term Examination November, 2015

Angel International School - Manipay 1 st Term Examination November, 2015 Grade 10 Angel International School - Manipay 1 st Term Examination November, 2015 Information & Communication Technology Duration: 3.00 Hours Part 1 Choose the appropriate answer 1) Find the correct type

More information

Type Storage Range of Values

Type Storage Range of Values University of Misan College of Engineering Department of Civil Engineering Course Title: Visual Basic Second Stage Fourth Lecture Visual Basic Data There are many types of data that we come across in our

More information

Visual Basic , ,. Caption Hello, On Off. * + +, -. 1-Arrow, , 2- Cross. - project1.vbp, 4-form1.frm.

Visual Basic , ,. Caption Hello, On Off. * + +, -. 1-Arrow, , 2- Cross. - project1.vbp, 4-form1.frm. Visual Basic 6.0 1.,. Caption Hello, On Off. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm...!"# 2/59 3...

More information

Visual Basic ,

Visual Basic , Visual Basic 6.0..!"# !"# $#%$$"& ( ( 6.0) 2 $, -&, - 1.,. Caption Hello, On O ff. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm. 2/59 !"# $#%$$"& ( ( 6.0) 3 $, -&, - 3/59 !"# $#%$$"&

More information

Layout Manager - Toolbar Reference Guide

Layout Manager - Toolbar Reference Guide Layout Manager - Toolbar Reference Guide Working with a Document Toolbar Button Description View or edit the source code of the document (for advanced users). Save the contents and submit its data to 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

Control Properties. Example: Program to change background color

Control Properties. Example: Program to change background color Control Properties Before writing an event procedure for the control to response to an event, you have to set certain properties for the control to determine its appearance and how will it work with the

More information

Visual Basic Tutorial (Lesson 2)

Visual Basic Tutorial (Lesson 2) Visual Basic Tutorial (Lesson 2) Hopefully you will learn this during lesson 2. : Know what an Event is. Determine what Events a control can have Write code for one or more Events. Using optionbuttons

More information

National Weather Map

National Weather Map Weather Map Objectives Each student will utilize the Google Docs drawing application to create a map using common weather map symbols that show the current state of the weather in the United States. Benchmarks

More information

END-TERM EXAMINATION

END-TERM EXAMINATION (Please Write your Exam Roll No. immediately) END-TERM EXAMINATION DECEMBER 2006 Exam. Roll No... Exam Series code: 100274DEC06200274 Paper Code : MCA-207 Subject: Front End Design Tools Time: 3 Hours

More information

PROGRAM 1: SIMPLE CALCULATOR

PROGRAM 1: SIMPLE CALCULATOR PROGRAM 1: SIMPLE CALCULATOR Option Explicit Dim operand1 As Double, operand2 As Double Dim op1 As Double, op2 As Double Dim operator As String Dim cleardisplay As Boolean Private Sub Cmdclear_Click()

More information

Final Java Experiment List(For Internal and External)

Final Java Experiment List(For Internal and External) Final Java Experiment List(For Internal and External) 1. Write a java program to create an abstract class named Shape that contains an empty method named area (). Provide two classes named Square and Triangle

More information

VBA Collections A Group of Similar Objects that Share Common Properties, Methods and

VBA Collections A Group of Similar Objects that Share Common Properties, Methods and VBA AND MACROS VBA is a major division of the stand-alone Visual Basic programming language. It is integrated into Microsoft Office applications. It is the macro language of Microsoft Office Suite. Previously

More information

Agenda. First Example 24/09/2009 INTRODUCTION TO VBA PROGRAMMING. First Example. The world s simplest calculator...

Agenda. First Example 24/09/2009 INTRODUCTION TO VBA PROGRAMMING. First Example. The world s simplest calculator... INTRODUCTION TO VBA PROGRAMMING LESSON2 dario.bonino@polito.it Agenda First Example Simple Calculator First Example The world s simplest calculator... 1 Simple Calculator We want to design and implement

More information

Site Manager. To edit a page already in place, click on the name of the page.

Site Manager. To edit a page already in place, click on the name of the page. Web Page Editing Navigate to the SFHS website. The address is http://www.forsyth.k12.ga.us/sfhs/site/default.asp. (Use that link, or copy/paste it into a browser. You can also pull up Internet Explorer,

More information

Minimize Restore Close. Top Level Tabs. Quick Access Toolbar. Title Bar. Ribbon. Group. Rulers. Status Bar View Buttons.

Minimize Restore Close. Top Level Tabs. Quick Access Toolbar. Title Bar. Ribbon. Group. Rulers. Status Bar View Buttons. Microsoft Word 2013 Quick Access Toolbar Top Level Tabs Title Bar Minimize Restore Close Ribbon Group Rulers Status Bar View Buttons Zoom Control Getting to Know Word Word is word processing software.

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Step-by. A Very Warm Welcome to the Exciting World of Computers. Let s get Started It s easy with my Step- Instructions

Step-by. A Very Warm Welcome to the Exciting World of Computers. Let s get Started It s easy with my Step- Instructions A Very Warm Welcome to the Exciting World of Computers Let s get Started It s easy with my Step- by-step Instructions This lesson is all about getting to know your Main Menu Bar at the top of your screen.

More information

Strands & Standards WORD PROCESSING

Strands & Standards WORD PROCESSING Strands & Standards WORD PROCESSING COURSE DESCRIPTION This course reviews and builds upon skills acquired in Basics. As students create a variety of documents, increased efficiency, productivity, quality,

More information

Microsoft Excel 2016 Level 1

Microsoft Excel 2016 Level 1 Microsoft Excel 2016 Level 1 One Day Course Course Description You have basic computer skills such as using a mouse, navigating through windows, and surfing the Internet. You have also used paper-based

More information

KODAK Software User s Guide

KODAK Software User s Guide KODAK Create@Home Software User s Guide Table of Contents 1 Welcome to KODAK Create@Home Software Features... 1-1 Supported File Formats... 1-1 System Requirements... 1-1 Software Updates...1-2 Automatic

More information

Word Processing. EXAM INFORMATION Items. Points. Prerequisites. Grade Level. Course Length. Career Cluster EXAM BLUEPRINT. Performance Standards

Word Processing. EXAM INFORMATION Items. Points. Prerequisites. Grade Level. Course Length. Career Cluster EXAM BLUEPRINT. Performance Standards EXAM INFORMATION Items 39 Points 48 Prerequisites WORD PROCESSING BASICS OR 25 GWAM Grade Level 9-12 Course Length ONE SEMESTER DESCRIPTION This course reviews and builds upon skills acquired in Word Processing

More information

KODAK Software User s Guide. Software Version 9.0

KODAK Software User s Guide. Software Version 9.0 KODAK Create@Home Software User s Guide Software Version 9.0 Table of Contents 1 Welcome to KODAK Create@Home Software Features... 1-1 Supported File Formats... 1-1 System Requirements... 1-1 Software

More information

A Complete Tutorial for Beginners LIEW VOON KIONG

A Complete Tutorial for Beginners LIEW VOON KIONG I A Complete Tutorial for Beginners LIEW VOON KIONG Disclaimer II Visual Basic 2008 Made Easy- A complete tutorial for beginners is an independent publication and is not affiliated with, nor has it been

More information

Reprinted with permission, Pat Weddle, Alice Buffett Middle School, Omaha Public Schools.

Reprinted with permission, Pat Weddle, Alice Buffett Middle School, Omaha Public Schools. Reprinted with permission, Pat Weddle, Alice Buffett Middle School, Omaha Public Schools. 5 th & 6th Grade Electronic Publishing Timeline Textbook Resource: The Non-Designer s Design Book 2 nd Edition

More information

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

Start Visual Basic. Session 1. The User Interface Form (I/II) The Visual Basic Programming Environment. The Tool Box (I/II)

Start Visual Basic. Session 1. The User Interface Form (I/II) The Visual Basic Programming Environment. The Tool Box (I/II) Session 1 Start Visual Basic Use the Visual Basic programming environment Understand Essential Visual Basic menu commands and programming procedure Change Property setting Use Online Help and Exit Visual

More information

1 Information system An information system is the combination of technology(computers) and people that enable an organization to collect data, store them, and transform them into information Data Data

More information

UNIT 3 ADDITIONAL CONTROLS AND MENUS OF WINDOWS

UNIT 3 ADDITIONAL CONTROLS AND MENUS OF WINDOWS UNIT 3 ADDITIONAL CONTROLS AND MENUS OF WINDOWS 1 SYLLABUS 3.1 Working with other controls of toolbox : 3.1.1 Date Time Picker 3.1.2 List Box 3.1.2.1 Item collection 3.1.3 Combo Box 3.1.4 Picture Box 3.15

More information

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline 2 T U T O R I A L Objectives In this tutorial, you will learn to: Navigate Visual Studio.NET s Start Page. Create a Visual Basic.NET solution. Use the IDE s menus and toolbars. Manipulate windows in the

More information

DATA 301 Introduction to Data Analytics Microsoft Excel VBA. Dr. Ramon Lawrence University of British Columbia Okanagan

DATA 301 Introduction to Data Analytics Microsoft Excel VBA. Dr. Ramon Lawrence University of British Columbia Okanagan DATA 301 Introduction to Data Analytics Microsoft Excel VBA Dr. Ramon Lawrence University of British Columbia Okanagan ramon.lawrence@ubc.ca DATA 301: Data Analytics (2) Why Microsoft Excel Visual Basic

More information

Left aligned tab: Numbers and text is aligned to the left edge of the tab.

Left aligned tab: Numbers and text is aligned to the left edge of the tab. Tabs Left aligned tab: Numbers and text is aligned to the left edge of the tab. Right aligned tab: Numbers and text is aligned to the right edge of the tab. Center aligned tab: Numbers and text is aligned

More information

Introduction to Qualtrics

Introduction to Qualtrics Introduction to Qualtrics Copyright 2014, Software Application Training, West Chester University. A member of the Pennsylvania State Systems of Higher Education. No portion of this document may be reproduced

More information

NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY

NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY UNESCO-NIGERIA TECHNICAL & VOCATIONAL EDUCATION REVITALISATION PROJECT-PHASE II NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY OOBASIC/VISUAL BASIC PROGRAMMING COURSE CODE: COM 211 YEAR I SEMESTER II PRACTICAL

More information

VBScript: Math Functions

VBScript: Math Functions C h a p t e r 3 VBScript: Math Functions In this chapter, you will learn how to use the following VBScript functions to World Class standards: 1. Writing Math Equations in VBScripts 2. Beginning a New

More information

INTRODUCTION TO COMPUTER CONCEPTS CSIT 100 LAB: MICROSOFT POWERPOINT (Part 2)

INTRODUCTION TO COMPUTER CONCEPTS CSIT 100 LAB: MICROSOFT POWERPOINT (Part 2) INTRODUCTION TO COMPUTER CONCEPTS CSIT 100 LAB: MICROSOFT POWERPOINT (Part 2) Adding a Text Box 1. Select Insert on the menu bar and click on Text Box. Notice that the cursor changes shape. 2. Draw the

More information

Information Technology Practicals related General Instructions

Information Technology Practicals related General Instructions Information Technology Practicals related General Instructions There are in all 20 Practical Expweriments in all three streams. Distribution Practical numbers 1 to 9 are common for Arts, Science and Commerce

More information

Concordance Basics. Part I

Concordance Basics. Part I Concordance Basics Part I 1 Getting Started 1 Familiarity with the Concordance environment is the first step in learning the multi-faceted features of this powerful program. This chapter focuses on learning

More information

Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE

Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE 1 Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE Outline 2.1 Test-Driving the Welcome Application 2.2 Overview of the Visual Studio.NET 2003 IDE 2.3 Creating a Project for the

More information

Visual Basic. The Integrated Development Environment. Menu Bar

Visual Basic. The Integrated Development Environment. Menu Bar Visual Basic Visual Basic is initiated by using the Programs option > Microsoft Visual Basic 6.0 > Visual Basic 6.0. Clicking the Visual Basic icon, we can view a copyright screen enlisting the details

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

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Introduction Among the many new features of PATROL version 3.3, is support for Microsoft s Component Object Model (COM).

More information

Annotate PDFs. GUIDE v.1.1. IT Services. User Services

Annotate PDFs. GUIDE v.1.1. IT Services. User Services Annotate PDFs GUIDE v.1.1 User Services IT Services User Services IT Services University of Malta Msida MSD 2080 Malta Email: vle.itservices@um.edu.mt Web: www.um.edu.mt/vle Tel: +356 2340 4113 Last Updated:

More information

CENTAUR S REAL-TIME GRAPHIC INTERFACE V4.0 OPERATOR S MANUAL

CENTAUR S REAL-TIME GRAPHIC INTERFACE V4.0 OPERATOR S MANUAL CENTAUR S REAL-TIME GRAPHIC INTERFACE V4.0 OPERATOR S MANUAL TABLE OF CONTENTS Installation... 6 Introduction to Centaur s real-time Graphic Interface... 6 Computer Requirements... 7 Operating System

More information

SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE

SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE Course Title: Introduction to Visual Basic Code No.: Semester: Three Program: Computer Programming Author: Willem de Bruyne

More information

Microsoft PowerPoint 2010

Microsoft PowerPoint 2010 Microsoft PowerPoint 2010 Lesson 6: Working with Layout and Graphics Created by Felicia Hudson, Riverside High School--Durham Public Schools On completion of this lesson, students will be able to do the

More information

Download the files from you will use these files to finish the following exercises.

Download the files from  you will use these files to finish the following exercises. Exercise 6 Download the files from http://www.peter-lo.com/teaching/x4-xt-cdp-0071-a/source6.zip, you will use these files to finish the following exercises. 1. This exercise will guide you how to create

More information

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

The following instructions cover how to edit an existing report in IBM Cognos Analytics. IBM Cognos Analytics Edit a Report The following instructions cover how to edit an existing report in IBM Cognos Analytics. Navigate to Cognos Cognos Analytics supports all browsers with the exception

More information

Problem description: After finishing the lab, the student will practice:

Problem description: After finishing the lab, the student will practice: Lab 8: GUI After finishing the lab, the student will practice: Creating GUI with different controls Declaring event handler for different controls Problem description: Create Window Form Application for

More information

Accelerated Technology Training Workshops. Using Microsoft FrontPage to Create Web Sites ENGL 1423.B2 Dr. Richard Cunningham

Accelerated Technology Training Workshops. Using Microsoft FrontPage to Create Web Sites ENGL 1423.B2 Dr. Richard Cunningham Accelerated Technology Training Workshops Using Microsoft FrontPage to Create Web Sites ENGL 1423.B2 Dr. Richard Cunningham Copyright User Support Centre February 2007 Dynamic Web Sites F r o n t P a g

More information

CMPT 110 MIDTERM OCTOBER 18, 2001

CMPT 110 MIDTERM OCTOBER 18, 2001 CMPT 110 MIDTERM OCTOBER 18, 2001 1 What will be displayed when the command button is clicked? 7% Level of difficulty 7 (out of 10) Assume there is a command button called cmdbutton Assume there is a picturebox

More information

Visual Basic 1

Visual Basic 1 Visual Basic 1 www.ashagroup.org fiz; fo kffkz;ksa] ;s uksv~l vki lcdh lgk;rk ds fy, cuk;s x;s gsaa ;s uksv~l ljy Hkk kk esa cuk;s x;s gsaa bu uksv~l dks i

More information

streamed Video On-Demand

streamed Video On-Demand streamed Video On-Demand Quick Start Card A step-by-step guide for streamed Video On-Demand patient education application. For additional support, visit: http://clients.krames.com Place Login Sticker Here

More information

UNIT 1. Introduction to Microsoft.NET framework and Basics of VB.Net

UNIT 1. Introduction to Microsoft.NET framework and Basics of VB.Net UNIT 1 Introduction to Microsoft.NET framework and Basics of VB.Net 1 SYLLABUS 1.1 Overview of Microsoft.NET Framework 1.2 The.NET Framework components 1.3 The Common Language Runtime (CLR) Environment

More information

How to Set Up WebEx Settings Before a Meeting

How to Set Up WebEx Settings Before a Meeting How to Set Up WebEx Settings Before a Meeting Step 1: Login to https://wtamu.webex.com Step 2: Select Schedule a Meeting Step 3: Select Advanced Scheduler Step 4: Enter a Meeting Topic, and Meeting Password

More information

CPSC 203 Extra review and solutions

CPSC 203 Extra review and solutions CPSC 203 Extra review and solutions Multiple choice questions: For Questions 1 6 determine the output of the MsgBox 1) x = 12 If (x > 0) Then s = s & "a" s = s & "b" a. a b. b c. s d. ab e. None of the

More information

EDIT202 PowerPoint Lab Assignment Guidelines

EDIT202 PowerPoint Lab Assignment Guidelines EDIT202 PowerPoint Lab Assignment Guidelines 1. Create a folder named LABSEC-CCID-PowerPoint. 2. Download the PowerPoint-Sample.avi video file from the course WebCT site and save it into your newly created

More information

AGENDA. :: Homework Upload. :: Photoshop Lesson 4: Creating a PSD Wireframe [Homepage] I. DOCUMENT SET-UP: II. DRAWING SHAPES III.

AGENDA. :: Homework Upload. :: Photoshop Lesson 4: Creating a PSD Wireframe [Homepage] I. DOCUMENT SET-UP: II. DRAWING SHAPES III. CLASS :: 04 MULTIMEDIA TOOLS :: CLASS NOTES 10.02 2017 AGENDA :: Homework Upload [ A-2 ] Ultimate Composite! Upload A-2 Project to Student PSD Folder :: Photoshop Lesson 4: Creating a PSD Wireframe [Homepage]

More information

Visual Basic ,

Visual Basic , Visual Basic 6.0 1.,. Caption Hello, On O ff. * + +, -. 1-Arrow, + - 4 +, 2- Cross. - project1.vbp, 4-form1.frm...!"# 2/59 3...

More information

Band Editor User Guide Version 1.3 Last Updated 9/19/07

Band Editor User Guide Version 1.3 Last Updated 9/19/07 Version 1.3 Evisions, Inc. 14522 Myford Road Irvine, CA 92606 Phone: 949.833.1384 Fax: 714.730.2524 http://www.evisions.com/support Table of Contents 1 - Introduction... 4 2 - Report Design... 7 Select

More information

:: MULTIMEDIA TOOLS :: CLASS NOTES

:: MULTIMEDIA TOOLS :: CLASS NOTES CLASS :: 04 02.15 2017 AGENDA :: Homework Upload [ A-2 ] Ultimate Composite! Upload A-2 Project to Student PSD Folder :: Photoshop Lesson 4: Creating a PSD Wireframe [Homepage] I. DOCUMENT SET-UP: a. Dimensions

More information

StandardWriter Software Create great rubrics and product guides in a flash. The Curriculum Project PMB Bee Cave Rd.; #650 Austin, TX 78746

StandardWriter Software Create great rubrics and product guides in a flash. The Curriculum Project PMB Bee Cave Rd.; #650 Austin, TX 78746 StandardWriter Software Create great rubrics and product guides in a flash. The Curriculum Project PMB 141 3300 Bee Cave Rd.; #650 Austin, TX 78746 www.curriculumproject.com 800.867.9067 Table of Contents

More information

Create & Use Your Own Teaching Website BJORN CANDEL FUJAIRAH MEN S COLLEGE

Create & Use Your Own Teaching Website BJORN CANDEL FUJAIRAH MEN S COLLEGE Create & Use Your Own Teaching Website BJORN CANDEL FUJAIRAH MEN S COLLEGE 2 Go to www.kahoot.it 3 Here are some different ways to communicate with your students and deliver your classes 28 February 2018

More information

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE C30147 RELATIONAL DATABASE Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards This module has been developed to further the learner s

More information

Desktop Publishing. MIT Computer Centre 5/1. Shortcut Key of UNDO is A) Ctrl + X B) Ctrl + H C) Ctrl + Y D) Ctrl + Z Correct Answer : D

Desktop Publishing. MIT Computer Centre 5/1. Shortcut Key of UNDO is A) Ctrl + X B) Ctrl + H C) Ctrl + Y D) Ctrl + Z Correct Answer : D Shortcut Key of UNDO is A) Ctrl + X B) Ctrl + H C) Ctrl + Y D) Ctrl + Z Desktop Publishing 2. What is the character to be shortened to its normal shape and display something below its location? A) Superscript

More information

Guide to WB Annotations

Guide to WB Annotations Guide to WB Annotations 04 May 2016 Annotations are a powerful new feature added to Workbench v1.2.0 (Released May 2016) for placing text and symbols within wb_view tabs and windows. They enable generation

More information

Experiment No. 2. Program:

Experiment No. 2. Program: Index 1. C++ program to perform bubble sort. 2. C++ program with class ratio and assign(),convert(),invert(),print() functions. 3. C++ program with circle class using default constructor. 4. C++ program

More information

Laboratory 1. Part 1: Introduction to Spreadsheets

Laboratory 1. Part 1: Introduction to Spreadsheets Laboratory 1 Part 1: Introduction to Spreadsheets By the end of this laboratory session you should be familiar with: Navigating around a worksheet. Naming sheets and cells. Formatting. The use of formulae.

More information

Human Factors Engineering Short Course Topic: A Simple Numeric Entry Keypad

Human Factors Engineering Short Course Topic: A Simple Numeric Entry Keypad Human Factors Engineering Short Course 2016 Creating User Interface Prototypes with Microsoft Visual Basic for Applications 3:55 pm 4:55 pm, Wednesday, July 27, 2016 Topic: A Simple Numeric Entry Keypad

More information

Website Pros Database Component. v

Website Pros Database Component. v Website Pros Database Component v1.00.02 Table Of Contents Before Getting Started... 2 Using the Database Component... 5 How the Database Component Works... 5 Adding the Toolbar... 6 Adding Component

More information

Getting started 7. Writing macros 23

Getting started 7. Writing macros 23 Contents 1 2 3 Getting started 7 Introducing Excel VBA 8 Recording a macro 10 Viewing macro code 12 Testing a macro 14 Editing macro code 15 Referencing relatives 16 Saving macros 18 Trusting macros 20

More information

Contents Introduction Getting Started Visual Basic Form Configuration Entering the VB Code

Contents Introduction Getting Started Visual Basic Form Configuration Entering the VB Code Your comments and suggestions on the operation of this software are welcome. Please address them to: ICONICS 100 Foxborough Blvd. Foxborough, MA 02035 Tel: 508-543-8600 Fax: 508-543-1503 E-mail: support@iconics.com

More information

Creating Booklets Using Microsoft Word 2013 on a PC

Creating Booklets Using Microsoft Word 2013 on a PC Creating Booklets Using Microsoft Word 2013 on a PC Booklets are a great way to collect information and graphic samples and format them in a user-friendly publication to share with others. Examples: Collect

More information

Las Vegas, Nevada, December 3 6, Kevin Vandecar. Speaker Name:

Las Vegas, Nevada, December 3 6, Kevin Vandecar. Speaker Name: Las Vegas, Nevada, December 3 6, 2002 Speaker Name: Kevin Vandecar Course Title: Introduction to Visual Basic Course ID: CP11-3 Session Overview: Introduction to Visual Basic programming is a beginning

More information

Goldfish 4. Quick Start Tutorial

Goldfish 4. Quick Start Tutorial Goldfish 4 Quick Start Tutorial A Big Thank You to Tobias Schilpp 2018 Fishbeam Software Text, Graphics: Yves Pellot Proofread, Photos: Tobias Schilpp Publish Code: #180926 www.fishbeam.com Get to know

More information

Fall 2016 Exam Review 3 Module Test

Fall 2016 Exam Review 3 Module Test 1. What is the block of text at the bottom of the page called? Header Footer Document Area Ribbon 2. Which word processing tool can help you find synonyms to improve your word choice? Spelling and Grammar

More information

INFORMATION TECHNOLOGY

INFORMATION TECHNOLOGY INFORMATION TECHNOLOGY PowerPoint Presentation Section Two: Formatting, Editing & Printing Section Two: Formatting, Editing & Printing By the end of this section you will be able to: Insert, Edit and Delete

More information

Microsoft Office Training Skills 2010

Microsoft Office Training Skills 2010 Lesson 3 - Creating Documents with MS word 2010 Introduction to Word Processing MS-Word 2010 is word processing application that is used create and edit documents such as: Books, letters, reports, newsletters,

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introducing Visual Basic 8 Installing Visual Studio 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects

More information

Sample Paper 2010 Class XII Subject Informatic Practices

Sample Paper 2010 Class XII Subject Informatic Practices Sample Paper 2010 Class XII Subject Informatic Practices (Section A) Q1. Answer the following Questions a) Visual Basic is not an Object Oriented Language Justify this statement. 2 b) How is a standard

More information

Instructions for Using PDF Tests and Journals

Instructions for Using PDF Tests and Journals Instructions for Using PDF Tests and Journals To use the test and journal PDFs onscreen, open them in Adobe Acrobat Reader DC, a free version of the Adobe app you can download here: https://acrobat.adobe.com/us/en/acrobat/pdf-reader.html.

More information

Using PowerPoint to Create ebooks

Using PowerPoint to Create ebooks Using PowerPoint to Create ebooks Summary: Most people know that PowerPoint can be used to make slideshows, but it is also a tool, installed on most CPS computers, that can be used to make ebooks in PDF

More information

Microsoft Word XP (2002)

Microsoft Word XP (2002) Microsoft Word (2002) Creating & Editing Documents Edited by Sahid Yogyakarta State University Adopted from: http://www.course.com/downloads/newperspectives/officexp/index.html 2 31 Maret 2009 Creating

More information

<excelunusual.com> Easy Zoom -Chart axis Scaling Using VBA - by George Lungu. <www.excelunusual.com> 1. Introduction: Chart naming: by George Lungu

<excelunusual.com> Easy Zoom -Chart axis Scaling Using VBA - by George Lungu. <www.excelunusual.com> 1. Introduction: Chart naming: by George Lungu Easy Zoom -Chart axis Scaling Using VBA - by George Lungu Introduction: - In certain models we need to be able to change the scale of the chart axes function of the result of a simulation - An Excel chart

More information

PROGRAMMING LANGUAGE 2 (SPM3112) NOOR AZEAN ATAN MULTIMEDIA EDUCATIONAL DEPARTMENT UNIVERSITI TEKNOLOGI MALAYSIA

PROGRAMMING LANGUAGE 2 (SPM3112) NOOR AZEAN ATAN MULTIMEDIA EDUCATIONAL DEPARTMENT UNIVERSITI TEKNOLOGI MALAYSIA PROGRAMMING LANGUAGE 2 (SPM3112) INTRODUCTION TO VISUAL BASIC NOOR AZEAN ATAN MULTIMEDIA EDUCATIONAL DEPARTMENT UNIVERSITI TEKNOLOGI MALAYSIA Topics Visual Basic Components Basic Operation Screen Size

More information

GIMP ANIMATION EFFECTS

GIMP ANIMATION EFFECTS GIMP ANIMATION EFFECTS Animation: Text Word by Word ANIMATION: TEXT WORD BY WORD GIMP is all about IT (Images and Text) BACKGROUND IMAGE Before you begin the text animation, you will download a public

More information

Design Of Human Computer Interfaces Assignment 1- Hello World. Compliance Report

Design Of Human Computer Interfaces Assignment 1- Hello World. Compliance Report Design Of Human Computer Interfaces Assignment 1- Hello World Compliance Report Prepared for: Skip Poehlman Prepared By: K C Course: SE 4D03 Date: September 30, 2008 Contents 1. Code Listing a. Module

More information

POWERPOINT 2003 OVERVIEW DISCLAIMER:

POWERPOINT 2003 OVERVIEW DISCLAIMER: DISCLAIMER: POWERPOINT 2003 This reference guide is meant for experienced Microsoft Office users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training

More information

Macromedia RoboHelp Course Outline

Macromedia RoboHelp Course Outline Tel 0845 686 0266 http://www.multimediacentre.co.uk RoboHelp X5 Course Outline Description This 3-day instructor-led training course covers the strategies and development process of designing a Help system.

More information

Unit 11.Introduction to Form and Report

Unit 11.Introduction to Form and Report Introduction to Form Unit 11.Introduction to Form and Report Introduction: Databases are made to be used. Access provides an easy way to enter data into Access database tables with forms. Forms can also

More information

Building an Interactive Web Page with DataSocket

Building an Interactive Web Page with DataSocket Application Note 127 Introduction Building an Interactive Web Page with DataSocket Heather Edwards This application note explains how you can create an interactive Web page with which users can view data

More information

Drawing an Integrated Circuit Chip

Drawing an Integrated Circuit Chip Appendix C Drawing an Integrated Circuit Chip In this chapter, you will learn how to use the following VBA functions to World Class standards: Beginning a New Visual Basic Application Opening the Visual

More information