Philadelphia University Faculty of Information Technology. Visual Programming

Size: px
Start display at page:

Download "Philadelphia University Faculty of Information Technology. Visual Programming"

Transcription

1 Philadelphia University Faculty of Information Technology Visual Programming Using C# -Work Sheets- Prepared by: Dareen Hamoudeh Eman Al Naji

2 Work Sheet 1 Form, Buttons and labels Properties Changing properties through properties window: 1. Change the following Form properties: a) Change the form title to worksheet1 (text). b) Set the Background color to blue (BackColor). c) Set the font color to red (ForeColor). d) Change e font style (Font) e) Set the interior spacing to 10 (Padding). f) Specify the Maximum form Size to be 500 x 500 (MaximumSize). g) Specify the Minimum form Size to be 100 x 100 (MinimumSize). 2. Place three Buttons on the form, and change their properties as follows: a) Change buttons titles to Ok, Exit, Disable (text). b) Change buttons names to Ok, Exit, (Name). c) Set the buttons size to 50 x 50 (size). d) Set the location for the ok button to be 60,60. And the Exit button to be 150,60. e) Set the tab index order as the following: Ok button: 0, Exit button:1, Disable:2 f) Disable any button and notice the change (Enable). g) Set the visible property to be false for any button and notice the change (visible). h) Using the property (Anchor) keep the ok, Exit buttons located to the left side of the form. i) Set the (Dock) property to: Top for the Disable button. j) Back to form properties, set (AcceptButton) to the Ok button, and CancelButton to the Exit button. 3. Drag a label on the form: a. Write the following text on it: welcome to project 1. b. Change font style, color and alignment.

3 Changing properties at run time: Write the appropriate code to apply the following: a) Insert a button that changes the Form s background color. b) Insert a button that hides\shows the label. c) Disable button will disable the Hide button. d) The Ok button shows a welcome message. e) Exit button closes the form.

4 Work Sheet 2 Textboxes Properties and Exercises Changing properties through properties window: 4. Drag a Textbox to the current form, and change the following Form properties: h) Enable your textbox to contain several lines (Multiline) i) Show scrollbars in the textbox (ScrollBars). j) Enable your textbox to create a new line whenever you reach the border. (WordWrap). k) Add a default value to your textbox (Text). l) Change the font color in the textbox (forecolor) m) Forbid user to write in the textbox (Readonly) n) Forbid user access to the textbox (Enabled) o) Use your textbox for entering a password (PasswordChar) p) Use your textbox for entering a password, using the system symbol (UseSystemPasswordChar). q) Add other 3 textboxes. r) Change the TabIndex property for each textbox, so that the navigation between them will change.

5 Exercise 1: Create the following form: Add code that does the following: a) Change Title: Changes the title of the form according to the text entered in the textbox (title). b) Show/Hide: Shows and hides the label, the textbox and the button of the Title. c) Join: Joins the first name and last name inserted in the textboxes, and stores the results in Full Name. d) Go to Title: transfers the focus to Title. e) Repeat the code written in Join button, so that it occurs in "Textchanged" event.

6 Exercise 2: Create the following form: Write code in the displayed buttons so that you create a simple calculator

7 Work Sheet 3 Group boxes and panels Group boxes and panels: are used to group and contain controls, when moving them all controls (inside them) moves. Create the following form that contains a group box and a panel. Notice the differences between them through the following properties: Group box Caption No Scrollbar Same border panel No caption Scrollbars Change border Exercise: Add a Button "Hide", in the form above, to hide the "Greetings GroupBox".

8 Create the following form: Work Sheet 4 Check boxes and Radio buttons 1. Study the following properties for check boxes: Text. Checked. Check state. 2. Study the following properties for Radio buttons: Text. Checked. 3. write code to do the following: 1. Activate the 4 checkboxes in the form, so that whenever a checkbox is checked, the corresponding property is applied, otherwise it becomes false.

9 2. Activate the 2 radio buttons, so that whenever the "Personal" is checked, the first panel is shown, and the other is hidden, and whenever the "Education" is checked, vice versa. 3. Add a button, "Reset", that changes the checkstate property of any chosen checkbox to "indeterminate". Exercise 3: Create the following form, but first add the six radio buttons without the groupboxes, and check their behavior. Question: can you choose "Arial" with "Bold" at the same time? - Now, add the group boxes and check the difference in the radio buttons behavior.

10 - Activate the radio buttons so that they change the size, name and style of the label font. - Check the behavior of the "Style" radio buttons, can you select "Bold" and "Italic" at the same time? - Activate the checkboxes, and note the difference.

11 Build the following form, where: Work Sheet 5 Message box and picture box 1. When the user clicks on the button, the following message box shows: 2. If the user clicks on the OK button, a label shows with you clicked the Ok button. 3. If the user clicks on the Cancel button, a label shows with you clicked the Cancel button.

12 4. Each time the user clicks on the picture box, the image changes. Exercise 4: Create the following form, where each radio button executes the corresponding operation.

13 Work Sheet 6 Mouse events Create the following form, where: Label 2 Label 3 1. While the cursor moves over the image, the coordinates x and y for the curser position appear on the form. 2. When the user clicks on the image, the coordinates x and y for the curser position appear on the form. 3. When the cursor enters the text box, the font size increases, and when the cursor leaves the text box, the font size returns to its default size. 4. The text in label 2 will be changed to up, down or hover according to the event performed on the mouse. 5. The text in label 3 will be changed to left if the user clicked on the left mouse button, and to right if the user clicked on the right mouse button.

14 Create the following form, where: Work Sheet 7 Keyboard Events We will study the following Keyboard Events: KeyEventArgs Events Properties Alt Ctrl Key Down Shift Key Up Keycode KeyData KeyValue KeyPressEventArgs Events Properties Key Press KeyChar

15 Work sheet 8 ToolTip, NumericUpDown and LinkLabel Create the following form, where: Textbox3 Label5 1. The value in the age textbox must be between 18 and 30 (numericupdown). 2. When the user chooses his age, the value will show in label5 too. 3. When the curser hovers over the age textbox, a note (using tooltip control) shows as shown in the picture. 4. The user can write his age in textbox3, the value will be stored in the numericupdown. 5. When the user clicks on Philadelphia link, the university website opens. 6. When the user clicks on calculator link, the calculator application opens. 7. When the user clicks on MS word link, the MS word application opens. 8. When the user clicks on Pictures link, the Pictures folder opens.

16 Work sheet 9 Menus First: Create the following form, with the displayed menu: Discuss the following concepts: Menustrip Menuitem (Add, modify and delete) Separater Line Submenus Shortcuts (Using &) ShortCut property + ShowShortcut Righttoleft property Second: Create another form, with the following Menu

17 Add an ordinary label to the form, then Activate the displayed menu items as follows: A) Close Closes the form B) Red Changes the font color of the label into red C) Blue Changes the font color of the label into blue D) Green Changes the font color of the label into green E) Times New Roman Changes the font name of the label to "Times New Roman" F) Arial Changes the font name of the label to "Arial" G) Tahoma Changes the font name of the label to "Tahoma" H) Bold, Italic and Underline each changes the style of the label font Hint: Make them act like Checkboxes, working with properties (CheckOnClick and Checked)

18 Work sheet 10 ListBoxes First: Review listbox control item and its main properties, methods and default event. Create the following form, and add a Listbox with the following items in it: - Review the property SelectionMode and change its value (One, MultiSimple, MultiExtended) - Change the property Sorted into True, and check the effect. - Add two labels to the form. - In the first label, display the selecteditem (use the default event SelectedIndexChanged). - In the second label, display the selectedindex. (check its value when no items are selected) - Discuss the properties SelectedItems and SelectedIndecies. - If a user selects either C++ or C#, display a message "Welcome to C languages". (hint: use method GetSelected) - Add a button labeled "Count" and another label. When pressing the button, display number of items in the listbox in the new label.

19 Second: Practice several actions on the listbox. Create the following form: Activate the displayed buttons as follows: 1. Add: Adds the item entered in the textbox into the listbox. 2. Remove: Removes the selected item in the listbox (Ex: Change it to remove the written item in the textbox). 3. Clear List: Clears/removes all items in the listbox 4. Clear Selected: Removes the selection on items in the listbox.

20 Exercise 5: Create the following form: Activate the displayed buttons, so that: 1. > : moves the selected item from left listbox to the right one. 2. <: moves the selected item from right listbox to the left one 3. >>: moves all items from left listbox to the right one. 4. <<: moves all items from right listbox to the left one. Change the code in > and < buttons, so that they move the selected items.

21 Work sheet 11 CheckedListBox Create the following form. Add a checkedlistbox, with several items. Exercise 6: - Check the default event of checkedlistbox (SelectedIndexChanged) - Activate the event ItemCheck, and display the following properties in the label. o CurrentValue o NewValue o Index Create the following form that contains a checkedlistbox and a listbox. Activate ItemCheck event, so that whenever you check an item, it will be copied to the listbox, and whenever you uncheck it, it will be removed from the listbox.

22 Create the following form, where: Work Sheet 12 Combo box Study the following properties: Items Text. Dropdownstyle. MaxDropdownstyle SelectedItem SelectedIndex

23 Exercise 7: Create the following form that contains a ComboBox to choose between two group boxes: Add/Sub and Mul/Div as the following:

24 Work Sheet 13 TreeView Create the following form, and study the following: Properties: Nodes Check Boxes Image List Selected Node Checked FirstNode \ LastNode Parent. FullPath NextNode \ prevnode Text Name Tag Methods: Collapse() Expand() ExpandAll()

25 GetNodeCount() Add() Exercise 8:

26 Work Sheet 14 List View, Image list 1. Create the following form: Study the following properties: Items View Columns MultiSelect LargeImageList SmallImageList SelectedItems subitems Count Study the following Methods: Items.Add() Subitems. Add() Items.Clear()

27 The following event (ItemSelectionChanged) is used to reach a selected item using the object (e): e.isselected e.item e.item.subitems 2. Add two Image Lists to the form, one for small images and name it small and the other for large images and name it large. For each imagelist, study the following properties : Images. Image size 3. Connecting the list view with the image lists: a) Now, for the list view, change the smallimagelist property to small, and largeimagelist property to large. b) For each item in the list view, change the image index.

28 Exercise 9: Create the following form

29 Work Sheet 15 Multiple Forms 4. Create the following form: 5. Now create form2: To create another form on your project: Go to "Solution Explorer", right-click on your project name, and select this option.

30 Click New item, and the following screen will appear:

31 Select "Windows Form", and you can change the form name if you like. When you press add, a new form will be created, and opened in a designed tab, and displayed in the Solution Explorer.

32 Now, only add a button in this new form 6. Add a third form, and add one button. "Cancel". 7. Return to Form1, and on button "Form2" call form2. private void button1_click(object sender, EventArgs e) { Form2 f2 = new Form2(); f2.show(); } 8. Activate "Cancel" button on Form2, so that it closes the form. 9. Return to Form1, and on button "Form3" call form3, and change the title of it as the user specifies in the textbox. In form3: public partial class Form3 : Form { public Form3(string title) { InitializeComponent(); this.text = title; }

33 In form1: private void button2_click(object sender, EventArgs e) { Form3 f3 = new Form3(textBox1.Text); f3.show(); } 10. Activate the cancel button in Form3, to close the form. 11. Activate the Close button in Form1, to close the form. Notes: 1. You can call the same form several times, and opens it several times, because you are actually creating an object several times. 2. When you close the main form (which called the other forms), all forms are closed.

Philadelphia University Faculty of Information Technology. Visual Programming. Using C# -Work Sheets-

Philadelphia University Faculty of Information Technology. Visual Programming. Using C# -Work Sheets- Philadelphia University Faculty of Information Technology Visual Programming Using C# -Work Sheets- Prepared by: Dareen Hamoudeh Eman Al Naji 2018 Work Sheet 1 Hello World! 1. Create a New Project, Name

More information

CST242 Windows Forms with C# Page 1

CST242 Windows Forms with C# Page 1 CST242 Windows Forms with C# Page 1 1 2 4 5 6 7 9 10 Windows Forms with C# CST242 Visual C# Windows Forms Applications A user interface that is designed for running Windows-based Desktop applications A

More information

Chapter 12: Using Controls

Chapter 12: Using Controls Chapter 12: Using Controls Using a LinkLabel LinkLabel Similar to a Label Provides the additional capability to link the user to other sources Such as Web pages or files Default event The method whose

More information

ListBox. Class ListBoxTest. Allows users to add and remove items from ListBox Uses event handlers to add to, remove from, and clear list

ListBox. Class ListBoxTest. Allows users to add and remove items from ListBox Uses event handlers to add to, remove from, and clear list C# cont d (C-sharp) (many of these slides are extracted and adapted from Deitel s book and slides, How to Program in C#. They are provided for CSE3403 students only. Not to be published or publicly distributed

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

Windows Programming Using C#

Windows Programming Using C# Contents Windows Programming Using C# Menus TreeView TabControl MenuStrip 2 Main Menu Menus (mnu prefix) Menus provide groups of related commands for Windows applications Main menu is the control that

More information

Chapter 12: Using Controls

Chapter 12: Using Controls Chapter 12: Using Controls Examining the IDE s Automatically Generated Code A new Windows Forms project has been started and given the name FormWithALabelAndAButton A Label has been dragged onto Form1

More information

Programming. C# Programming: From Problem Analysis to Program Design 2nd Edition. David McDonald, Ph.D. Director of Emerging Technologies

Programming. C# Programming: From Problem Analysis to Program Design 2nd Edition. David McDonald, Ph.D. Director of Emerging Technologies 9 Programming Based on Events C# Programming: From Problem Analysis to Program Design 2nd Edition David McDonald, Ph.D. Director of Emerging Technologies Chapter Objectives Create applications that use

More information

EEE-425 Programming Languages (2013) 1

EEE-425 Programming Languages (2013) 1 2 System.Drawing Namespace System.Windows.Forms Namespace Creating forms applications by hand Creating forms applications using Visual Studio designer Windows applications also look different from console

More information

EEE-425 Programming Languages (2013) 1

EEE-425 Programming Languages (2013) 1 2 System.Drawing Namespace System.Windows.Forms Namespace Creating forms applications by hand Creating forms applications using Visual Studio designer Windows applications also look different from console

More information

List and Value Controls

List and Value Controls List and Value Controls Sorting in List-Based Controls You can sort the objects displayed in a list-based control by setting the Sorted property to True, as shown here: listbox1.sorted = true; Setting

More information

Controls. By the end of this chapter, student will be able to:

Controls. By the end of this chapter, student will be able to: Controls By the end of this chapter, student will be able to: Recognize the (Properties Window) Adjust the properties assigned to Controls Choose the appropriate Property Choose the proper value for the

More information

DateTimePicker Control

DateTimePicker Control Controls Part 2 DateTimePicker Control Used for representing Date/Time information and take it as input from user. Date information is automatically created. Prevents wrong date and time input. Fundamental

More information

Unit 3 Additional controls and Menus of Windows

Unit 3 Additional controls and Menus of Windows Working with other controls of toolbox: DateTime Picker If you want to enable users to select a date and time, and to display that date and time in the specified format, use the DateTimePicker control.

More information

1. Windows Forms 2. Event-Handling Model 3. Basic Event Handling 4. Control Properties and Layout 5. Labels, TextBoxes and Buttons 6.

1. Windows Forms 2. Event-Handling Model 3. Basic Event Handling 4. Control Properties and Layout 5. Labels, TextBoxes and Buttons 6. C# cont d (C-sharp) (many of these slides are extracted and adapted from Deitel s book and slides, How to Program in C#. They are provided for CSE3403 students only. Not to be published or publicly distributed

More information

Included with the system is a high quality speech synthesizer, which is installed automatically during the SymWord setup procedure.

Included with the system is a high quality speech synthesizer, which is installed automatically during the SymWord setup procedure. Introduction to SymWord SymWord is a simple to use, talking, symbol-word processor. It has the basic functionality of a word processor. SymWord can also be configured to produce speech and/or display text

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

Overview Describe the structure of a Windows Forms application Introduce deployment over networks

Overview Describe the structure of a Windows Forms application Introduce deployment over networks Windows Forms Overview Describe the structure of a Windows Forms application application entry point forms components and controls Introduce deployment over networks 2 Windows Forms Windows Forms are classes

More information

Center for Faculty Development and Support Making Documents Accessible

Center for Faculty Development and Support Making Documents Accessible Center for Faculty Development and Support Making Documents Accessible in Word 2007 Tutorial CONTENTS Create a New Document and Set Up a Document Map... 3 Apply Styles... 4 Modify Styles... 5 Use Table

More information

1 Ctrl + X Cut the selected item. 2 Ctrl + C (or Ctrl + Insert) Copy the selected item. 3 Ctrl + V (or Shift + Insert) Paste the selected item

1 Ctrl + X Cut the selected item. 2 Ctrl + C (or Ctrl + Insert) Copy the selected item. 3 Ctrl + V (or Shift + Insert) Paste the selected item Tips and Tricks Recorder Actions Library XPath Syntax Hotkeys Windows Hotkeys General Keyboard Shortcuts Windows Explorer Shortcuts Command Prompt Shortcuts Dialog Box Keyboard Shortcuts Excel Hotkeys

More information

1 Dept: CE.NET Programming ( ) Prof. Akash N. Siddhpura. Working with Form: properties, methods and events

1 Dept: CE.NET Programming ( ) Prof. Akash N. Siddhpura. Working with Form: properties, methods and events Working with Form: properties, methods and events To create a New Window Forms Application, Select File New Project. It will open one dialog box which is shown in Fig 2.1. Fig 2.1 The New Project dialog

More information

Visual Programming (761220) First Exam First Semester of Date: I Time: 60 minutes

Visual Programming (761220) First Exam First Semester of Date: I Time: 60 minutes Philadelphia University Lecturer : Mrs. Eman Alnaji Coordinator : Miss. Reem AlQaqa Internal Examiner: Dr. Nameer Al Emam Faculty of Information Technology Department of CIS Examination Paper Visual Programming

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

Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys

Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys Quick Reference Guide 8 Excel 2013 for Windows Keyboard Shortcut Keys Control Shortcut s Ctrl + PgDn Ctrl + PgUp Ctrl + Shift + & Ctrl + Shift_ Ctrl + Shift + ~ Ctrl + Shift + $ Ctrl + Shift + % Ctrl +

More information

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9 TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 DEFINITIONS... 3 WHY WOULD YOU USE THIS?... 3 STEP BY STEP... 3 USING WORD S TOOLBARS... 5 DEFINITIONS... 5 WHY WOULD

More information

Working with PDF s. To open a recent file on the Start screen, double click on the file name.

Working with PDF s. To open a recent file on the Start screen, double click on the file name. Working with PDF s Acrobat DC Start Screen (Home Tab) When Acrobat opens, the Acrobat Start screen (Home Tab) populates displaying a list of recently opened files. The search feature on the top of the

More information

CHAPTER 3. Writing Windows C# Programs. Objects in C#

CHAPTER 3. Writing Windows C# Programs. Objects in C# 90 01 pp. 001-09 r5ah.ps 8/1/0 :5 PM Page 9 CHAPTER 3 Writing Windows C# Programs 5 9 Objects in C# The C# language has its roots in C++, Visual Basic, and Java. Both C# and VB.Net use the same libraries

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

Interface Design in C#

Interface Design in C# Interface Design in C# Project 1: Copy text from TextBox to Label as shown in the figure. TextBox and Label have the same property: display.text = nameentry.text; private void nameentry_textchanged display.text

More information

Microsoft Visual Basic 2005: Reloaded

Microsoft Visual Basic 2005: Reloaded Microsoft Visual Basic 2005: Reloaded Second Edition Chapter 5 Repeating Program Instructions Objectives After studying this chapter, you should be able to: Include the repetition structure in pseudocode

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Using Sitecore 5.3.1

Using Sitecore 5.3.1 Using Sitecore 5.3.1 An End-User s Guide to Using and Administrating Sitecore Author: Sitecore Corporation Date: December 12, 2007 Release: Rev. 1.0 Language: English Sitecore is a registered trademark.

More information

Highline College. Busn 216: Computer Applications for Business (Fun and Power with Computers)

Highline College. Busn 216: Computer Applications for Business (Fun and Power with Computers) Highline College Busn 216: Computer Applications for Business (Fun and Power with Computers) Office 2016 Video #04: Introduction to Word, Ribbons, QAT, Navigation Tricks, Selection Tricks 1) Word Word

More information

Keeping Track, Menus. CSC 330 Object-Oriented Programming 1

Keeping Track, Menus. CSC 330 Object-Oriented Programming 1 Keeping Track, Menus CSC 330 Object-Oriented Programming 1 Chapter Objectives Keeping Track Create menus and submenus for program control Display and use the Windows common dialog boxes Create context

More information

Word Tips & Tricks. Status Bar. Add item to Status Bar To add an itme to the status bar, click on the item and a checkmark will display.

Word Tips & Tricks. Status Bar. Add item to Status Bar To add an itme to the status bar, click on the item and a checkmark will display. Status Bar The status bar is located on the bottom of the Microsoft Word window. The status bar displays information about the document such as the current page number, the word count in the document,

More information

Introduction to Microsoft Word

Introduction to Microsoft Word Chapter Microsoft Word is a powerful word processing program that allows you to enter text, make changes to it, format it, record and print it. You can use it to produce professional business letters,

More information

Low Vision Technology

Low Vision Technology Low Vision Technology Student Name: Directions: 1. If this assessment is appropriate for this student, use it for planning programming and reporting student performance at least four times. 2. Date the

More information

Introductionto the Visual Basic Express 2008 IDE

Introductionto the Visual Basic Express 2008 IDE 2 Seeing is believing. Proverb Form ever follows function. Louis Henri Sullivan Intelligence is the faculty of making artificial objects, especially tools to make tools. Henri-Louis Bergson Introductionto

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

Unit-1. Components of.net Framework. 1. Introduction to.net Framework

Unit-1. Components of.net Framework. 1. Introduction to.net Framework 1 Unit-1 1. Introduction to.net Framework The.NET framework is a collection of all the tools and utilities required to execute the.net managed applications on a particular platform. The MS.NET framework

More information

Program s UI or Keyboard buttons are shown bold. Working procedure and sequence explanation. 2 or more contents descriptions or explanations are

Program s UI or Keyboard buttons are shown bold. Working procedure and sequence explanation. 2 or more contents descriptions or explanations are User Manual Program UI Name Program s UI or Keyboard buttons are shown bold. Start installing OZ in Excel by clicking its install shield. When OZ in Excel install setup wizard shows up, click Next. Manual

More information

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Excel 2013 Quick Start Guide The Excel Window File Tab: Click to access actions like Print, Save As, etc. Also to set Excel options. Ribbon: Logically organizes actions onto Tabs, Groups, and Buttons to

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

Excel 2003 Tutorial II

Excel 2003 Tutorial II This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial II Charts Chart Wizard Chart toolbar Resizing a chart

More information

Word Long Docs Quick Reference (Windows PC)

Word Long Docs Quick Reference (Windows PC) Word Long Docs Quick Reference (Windows PC) See https://staff.brighton.ac.uk/is/training/pages/word/longdocs.aspx for videos and exercises to accompany this quick reference card. Styles Working with styles

More information

Table of Contents Lesson 1: Introduction to the New Interface... 2 Lesson 2: Prepare to Work with Office

Table of Contents Lesson 1: Introduction to the New Interface... 2 Lesson 2: Prepare to Work with Office Table of Contents Lesson 1: Introduction to the New Interface... 2 Exercise 1: The New Elements... 3 Exercise 2: Use the Office Button and Quick Access Toolbar... 4 The Office Button... 4 The Quick Access

More information

Microsoft PowerPoint 2003 Basic Activities

Microsoft PowerPoint 2003 Basic Activities Microsoft PowerPoint 2003 Basic Activities Activity 1 Creating a new blank presentation... 1 1A. Applying Layouts... 1 1B. Applying a Slide Design... 1 1C. Applying a Background... 2 1D. Entering Text...

More information

POS Designer Utility

POS Designer Utility POS Designer Utility POS Designer Utility 01/15/2015 User Reference Manual Copyright 2012-2015 by Celerant Technology Corp. All rights reserved worldwide. This manual, as well as the software described

More information

Microsoft Excel > Shortcut Keys > Shortcuts

Microsoft Excel > Shortcut Keys > Shortcuts Microsoft Excel > Shortcut Keys > Shortcuts Function Keys F1 Displays the Office Assistant or (Help > Microsoft Excel Help) F2 Edits the active cell, putting the cursor at the end* F3 Displays the (Insert

More information

Section 3 Formatting

Section 3 Formatting Section 3 Formatting ECDL 5.0 Section 3 Formatting By the end of this Section you should be able to: Apply Formatting, Text Effects and Bullets Use Undo and Redo Change Alignment and Spacing Use Cut, Copy

More information

From workbook ExcelPart2.xlsx, select FlashFillExample worksheet.

From workbook ExcelPart2.xlsx, select FlashFillExample worksheet. Microsoft Excel 2013: Part 2 More on Cells: Modifying Columns, Rows, & Formatting Cells Find and Replace This feature helps you save time to locate specific information when working with a lot of data

More information

Dive Into Visual C# 2010 Express

Dive Into Visual C# 2010 Express Dive Into Visual C# 2010 Express 2 Seeing is believing. Proverb Form ever follows function. Louis Henri Sullivan Intelligence is the faculty of making artificial objects, especially tools to make tools.

More information

Lab - Task Manager in Windows 7 and Vista

Lab - Task Manager in Windows 7 and Vista Lab - Task Manager in Windows 7 and Vista Introduction In this lab, you will explore Task Manager and manage processes from within Task Manager. Recommended Equipment The following equipment is required

More information

Pelnor Help Add-in.

Pelnor Help Add-in. Pelnor Help Add-in http://www.pelnor.com/ Pelnor Software Index HelpAddIn 1 Pelnor Help Add-in UserControl... 1 Node Editor...7 URL Link Dialog...10 Inner Document Link Selection Dialog... 11 Help Document

More information

Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet

Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet 19 Text and Tabs Tabs (tab stops) help you to write a list, for example, for an order or invoice. Larger spaces should not be

More information

Starting Excel application

Starting Excel application MICROSOFT EXCEL 1 2 Microsoft Excel: is a special office program used to apply mathematical operations according to reading a cell automatically, just click on it. It is called electronic tables Starting

More information

Start Menu Log off Turn Off Computer Run Search Help and Support

Start Menu Log off Turn Off Computer Run Search Help and Support Windows Basics Start Menu Start Menu Log off - Log off the current user. Turn Off Computer - shutdown, restart and standby. Run - Used to manually start executable files (programs). Search - Search your

More information

MICROSOFT EXCEL KEYBOARD SHORCUTS

MICROSOFT EXCEL KEYBOARD SHORCUTS MICROSOFT EXCEL KEYBOARD SHORCUTS F1 Displays the Office Assistant or (Help > Microsoft Excel Help) F2 Edits the active cell, putting the cursor at the end F3 Displays the (Insert > Name > Paste) dialog

More information

EPSON RC+ 7.0 Option. GUI Builder 7.0 EM145A2719F. Rev. 2

EPSON RC+ 7.0 Option. GUI Builder 7.0 EM145A2719F. Rev. 2 EPSON RC+ 7.0 Option GUI Builder 7.0 Rev. 2 EM145A2719F EPSON RC+ 7.0 Option GUI Builder 7.0 Rev.2 EPSON RC+ 7.0 Option GUI Builder 7.0 Rev.2 Copyright 2012-2014 SEIKO EPSON CORPORATION. All rights reserved.

More information

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word "Qtr3"?

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word Qtr3? Choose The Correct Answer: 1) Study the highlighted cells in the image below and identify which of the following represents the correct cell address for these cells: a) The cell reference for the selected

More information

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA PRESENCE RadEditor Guide SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Contents... 2 Introduction... 3 What is RadEditor?... 3 RadEditor

More information

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook Excel 2016 Main Screen Fundamental Concepts General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Ctrl + O Ctrl + N Ctrl + S Ctrl + P Ctrl + W Help Run Spell Check Calculate

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

MockupScreens - User Guide

MockupScreens - User Guide MockupScreens - User Guide Contents 1. Overview...4 2. Getting Started...5 Installing the software... 5 Registering... 9 3. Understanding the Interface...11 Menu Bar... 11 Tool bar... 14 Elements... 14

More information

Create a Scrapbook Page

Create a Scrapbook Page Create a Scrapbook Page You are now going to create a scrapbook page that will contain an arrangement of pictures and text. 1. Open Photoshop start > programs > Adobe Master Collection > Photoshop CS5

More information

Inserting Information into PowerPoint

Inserting Information into PowerPoint LESSON 6 6.1 Inserting Information into PowerPoint After completing this lesson, you will be able to: Change the layout of a slide. Insert a clip art image. Scale an image. Insert and format a table. Insert

More information

239 Excel Keyboard Shortcuts

239 Excel Keyboard Shortcuts 239 Excel Keyboard Shortcuts WORK FASTER AND MORE EFFICIENTLY WITH THESE CLEARLY ILLUSTRATED EXCEL SHORTCUTS. My Online Training Hub https://www.myonlinetraininghub.com/ Below is a huge list of Excel keyboard

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Files in Microsoft Excel are referred to as Workbooks. This is because they can contain more than one sheet. The number of sheets a workbook can contain is only limited by your computer

More information

TMS Advanced Smooth Mega Menu

TMS Advanced Smooth Mega Menu TMS Advanced Smooth Mega Menu June 2009 Copyright 2009 by tmssoftware.com bvba Web: http://www.tmssoftware.com Email: info@tmssoftware.com 1 Index TAdvSmoothMegaMenu... 3 TAdvSmoothMegaMenu description...

More information

Hands On: Dreamweaver CS3 NEW SPRY Widgets

Hands On: Dreamweaver CS3 NEW SPRY Widgets What is a Spry Widget? Spry widgets provide access to dynamic and interactive elements you might like to have on your Web page. These Spry elements include: Menu Bars Tabbed Panels Accordion Effects Collapsible

More information

Accessible Syllabus Using the Accessible Syllabus Template

Accessible Syllabus Using the Accessible Syllabus Template Accessible Syllabus Using the Accessible Syllabus Template WORKSHOP DESCRIPTION... 1 Overview 1 Prerequisites 1 Objectives 1 ACCESSIBLE SYLLABUS TEMPLATE... 2 What Makes a Document Accessible? 2 Template

More information

SharePoint List Booster Features

SharePoint List Booster Features SharePoint List Booster Features Contents Overview... 5 Supported Environment... 5 User Interface... 5 Disabling List Booster, Hiding List Booster Menu and Disabling Cross Page Queries for specific List

More information

Microsoft Word 2011: Basic Tutorial

Microsoft Word 2011: Basic Tutorial Microsoft Word 2011: Basic Tutorial 1. Create a new blank document In Word, you create and save content in a document. You can start with a blank document, an existing saved document, or a template. When

More information

LmÉPï C Á npï À ƵÀ ïì itech Analytic Solutions

LmÉPï C Á npï À ƵÀ ïì itech Analytic Solutions LmÉPï C Á npï À ƵÀ ïì itech Analytic Solutions No. 9, 1st Floor, 8th Main, 9th Cross, SBM Colony, Brindavan Nagar, Mathikere, Bangalore 560 054 Email: itechanalytcisolutions@gmail.com Website: www.itechanalytcisolutions.com

More information

Microsoft Word 2003 for Windows, Part 2

Microsoft Word 2003 for Windows, Part 2 Microsoft Word 2003 for Windows, Part 2 In this workshop, the following Word 2003 features will be covered: Creating and using Tables Formatting text using Styles Using MailMerge Arranging text in Columns

More information

Getting Started. Custom Reports Software

Getting Started. Custom Reports Software Getting Started Custom Reports Software Custom Reports software Custom reporting The Custom Reports software lets you transfer quantitative results from Data Analysis into the Custom Reports spreadsheet

More information

Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office.

Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office. Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start Choose: programs Choose : Microsoft Office Select: Excel *The interface of Excel program - Menu bar. - Standard bar.

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

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 EDITOR GUIDE Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 1 Button Functions: Button Function Display the page content as HTML. Save Preview

More information

AutoCAD 2009 User InterfaceChapter1:

AutoCAD 2009 User InterfaceChapter1: AutoCAD 2009 User InterfaceChapter1: Chapter 1 The AutoCAD 2009 interface has been enhanced to make AutoCAD even easier to use, while making as much screen space available as possible. In this chapter,

More information

Microsoft Word Training

Microsoft Word Training Microsoft Word Training Objectives: Become familiar with the Word Window, toolbars, and menus Learn to Save and Print Learn how to create tables, forms and templates Opening Word / Menus / Toolbars Click

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

90 + Excel Keyboard Shortcuts. for Mac users. How to master key board shortcuts

90 + Excel Keyboard Shortcuts. for Mac users. How to master key board shortcuts 90 + Excel Keyboard Shortcuts for Mac users How to master key board shortcuts 1. Take down a handful (may be 5 or 10) shortcuts that you think you ll use the most often and pin them to your desk. Make

More information

Requirements Document

Requirements Document GROUP 9 Requirements Document Create-A-Page Matthew Currier, John Campbell, and Dan Martin 5/1/2009 This document is an outline of what was originally desired in the application in the Project Abstract,

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

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Outlook 2010 Quick Start Guide Getting Started File Tab: Click to access actions like Print, Save As, etc. Also to set Outlook options. Ribbon: Logically organizes Command Buttons onto Tabs and Groups

More information

Getting Started Guide

Getting Started Guide UX-App Getting Started Guide Contents Keyboard Shortcuts... 2 Basic Shortcuts... 2 Component Manipulation... 2 Working with groups... 3 Grid Control... 3 Context Menu... 4 User Interface... 5 Managing

More information

Forms/Distribution Acrobat X Professional. Using the Forms Wizard

Forms/Distribution Acrobat X Professional. Using the Forms Wizard Forms/Distribution Acrobat X Professional Acrobat is becoming a standard tool for people and businesses to use in order to replicate forms and have them available electronically. If a form is converted

More information

MS Word Professional Document Alignment

MS Word Professional Document Alignment MS Word Professional Document Alignment Table of Contents CHARACTER VS. PARAGRAPH FORMATTING...5 Character formatting...5 Paragraph Formatting...5 USING SHOW/HIDE TO REVEAL NON-PRINTING CHARACTERS...5

More information

Microsoft Excel Keyboard Shortcuts

Microsoft Excel Keyboard Shortcuts Microsoft Excel Keyboard Shortcuts Here is a complete list of keyboard shortcuts for Microsoft Excel. Most of the shortcuts will work on all Excel versions on Windows based computer. Data Processing Shortcuts

More information

User Guide for IntegralUI ListBox v3.0

User Guide for IntegralUI ListBox v3.0 User Guide for IntegralUI ListBox v3.0 2013 Lidor Systems. All rights reserved 1 Table of contents Introduction 4 Architecture 5 Object Model 5 Event Model 6 Editor 7 Appearance 8 Working with styles 8

More information

EXCEL 2003 DISCLAIMER:

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

More information

What is Connect? Setting up your account A. Creating organization B. Inviting Users C. Accepting invite...

What is Connect? Setting up your account A. Creating organization B. Inviting Users C. Accepting invite... CONTENTS What is Connect?... 4 1. Setting up your account... 5 A. Creating organization... 5 B. Inviting Users... 7 C. Accepting invite... 10 D. Creating account... 11 E. Sign in to Connect... 12 2. First

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

Paint Box Tools. Professional Tools

Paint Box Tools. Professional Tools Paint Box Tools Professional Tools 1 1 Welcome and Appendix Welcome Whether you re a newby Mr Site user or a seasoned veteran you may well have noticed we ve updated our Paint Box editor to something a

More information

Table of Contents COURSE OVERVIEW... 3 LESSON 1: OUTLOOK 2010 CALENDAR INTERFACE... 5

Table of Contents COURSE OVERVIEW... 3 LESSON 1: OUTLOOK 2010 CALENDAR INTERFACE... 5 Table of Contents COURSE OVERVIEW... 3 LESSON 1: OUTLOOK 2010 CALENDAR INTERFACE... 5 OPEN OUTLOOK CALENDAR... 5 Ribbon... 6 Navigation Pane... 6 Appointment Area... 6 Task Pane... 6 To-Do Bar... 6 THE

More information

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

More information

The Domino Designer QuickStart Tutorial

The Domino Designer QuickStart Tutorial The Domino Designer QuickStart Tutorial 1. Welcome The Domino Designer QuickStart Tutorial You've installed Domino Designer, you've taken the Designer Guided Tour, and maybe you've even read some of the

More information