University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab. List of items

Size: px
Start display at page:

Download "University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab. List of items"

Transcription

1 List of items ListBox Control Properties List object.list(index) [= string] List1.List(0) List1.List(1) list ItemData list AddItem list NewIndex List1.AddItem "Judy Phelps" List1.ItemData(List1.NewIndex) = AddItem ItemData NewIndex ListCount True Sorted False 1

2 2 Column object.columns [= number] number Description 0 (Default) Items are arranged in a single column and the ListBox scrolls vertically. 1 to n Items are arranged in snaking columns, filling the first column, then the second column, and so on. The ListBox scrolls horizontally and displays the specified number of columns. 1 2 SHIFT SPACEBAR SPACEBAR SHIFT (UP ARROW, DOWN ARROW, LEFT ARROW, and RIGHT ARROW) SHIFT CTRL 2

3 Description 0 (Default) Multiple selection isn't allowed. 1 Simple multiple selection. A mouse click or pressing the SPACEBAR selects or deselects an item in the list. (Arrow keys move the focus.) 2 Extended multiple selection. Pressing SHIFT and clicking the mouse or pressing SHIFT and one of the arrow keys (UP ARROW, DOWN ARROW, LEFT ARROW, and RIGHT ARROW) extends the selection from the previously selected item to the current item. Pressing CTRL and clicking the mouse selects or deselects an item in the list. =0 ListIndex =0 List1. List1.List(List1.ListIndex) List List 1 ListIndex SelCount Selected Selected True List False List1.ListIndex = 1 List1.Selected(1) = True List1.Selected(1) = False 3

4 Style Style checkbox Style Value Description vblistboxstandard 0 (Default) Standard. The ListBox control displays as it did in previous versions of Visual Basic; That is, as a list of text items. vblistboxcheckbox 1 CheckBox. The ListBox control displays with a checkbox next to each text item. Multiple items in the ListBox can be selected by selecting the checkbox beside them. Events Click, DblClick, MouseDown, MouseUp, MouseMove, DragDrop, KeyDown, KeyUp, KeyPress, GetFocus and LostFocus events Scrool ItemCheck Private Sub List1_ItemCheck(Item As Integer) Move, Refresh, SetFocus and Zorder Methods object.additem item, index Style Methods : Additem 4

5 List1.AddItem "Judy Phelps" X="Judy Phelps" List1.AddItem x "Judy Phelps" x List1.AddItem 1. List1.AddItem "Judy Phelps",2 List1.AddItem 1., Val(2.) object.removeitem index RemoveItem List1.RemoveItem 2 List1.RemoveItem x List1.RemoveItem Val(1.) List1.RemoveItem List1.ListIndex List1.Clear :Clear 5

6 6

7 Project properties Object Property Setting Form1 Form1 ListBox ListBox1 List1 List ممه أن تىضع في حدث تحميل النمىذج ' Cat Dog Camel ListBox2 Sorted ItemData Column Style دزاسة False ' True List2 0 ' 2 0 ' ' 0 ListBox3 List3 CommandButton1 Command1 Append Box1 1 فساغ CommandButton2 Command2 Add Box2 2 فساغ Box3 3 فساغ CommandButton3 Command3 Remove Box4 4 فساغ CommandButton4 Command4 Copy0 CommandButton5 Command5 Copy1 CommandButton6 Command6 Copy2 CommandButton7 Command7 New Selection 7

8 Poject code Private Sub Command1_Click() 'List1.AddItem "lion" ' If 1. <> "" Then List1.AddItem 1. ' List1.ItemData(List1.NewIndex) = 564 Private Sub Command2_Click() ' List1.AddItem "bird", 1 ' If (2. <> "") And (Val(3.) >= 0) And (Val(3.) <= List1.ListCount) Then List1.AddItem 2., Val(3.) 'List1.ItemData(List1.NewIndex) = 738 Private Sub Command3_Click() 'list1.removeitem 2 ' If (Val(4.) >= 0) And (Val(4.) < List1.ListCount) Then List1.RemoveItem Val(4.) Private Sub Command4_Click() List3.Clear ' List3.AddItem List2. ' list3.additem list2.list (list2.listindex ) Command4.Font = List2. ' Private Sub Command5_Click() List3.Clear '' 1 For i = 0 To List2.ListCount - 1 If List2.Selected(i) Then List3.AddItem List2.List(i) 8

9 Private Sub Command6_Click() List3.Clear '' 2 For i = 0 To List2.ListCount - 1 If List2.Selected(i) Then List3.AddItem List2.List(i) Private Sub Command7_Click() For i = 0 To List2.ListCount 1 ' If List2.Selected(i) Then List2.Selected(i) = False Private Sub Form_Load() Dim a ' a = Array("cat", "dog", "camel") List1.Clear For i = 0 To 2 List1.AddItem a(i) For i = 0 To Screen.FontCount 1 ' List2.AddItem Screen.Fonts(i) 9

10 ListBox Project properties Object Property Setting Form1 Form1 CommandButton1 Command11 Add CommandButton2 Command12 Remove Box1 1 ListBox1 List فساغ List1 Ali Muna Huda 0

11 Project code Private Sub Form_Load() ممكه خزن االسماء هنا في القائمة ' x Dim x = Array("Ali", "Muna", "Huda") List1.Clear For i = 0 To 2 List1.AddItem x(i) ممكه وضعها ' 0 = List1.ListIndex Private Sub Command1_Click() If 1. <> "" Then List1.AddItem 1. If List1.ListCount = 1 Then List1.ListIndex = 0 في حالة وضعها في حدث تحميل النمىذج ' Private Sub Command2_Click() أو ممكه إعطاء زقم العنصس المساد حرفه وفحص السقم إذا كان أقل مه List1.ListCount فيتم الحرف 'If List1.ListIndex <> -1 Then List1.RemoveItem List1.ListIndex If List1.ListIndex = -1 Then MsgBox "No item selected or empty list", vbcritical, "Error" Else List1.RemoveItem List1.ListIndex في حالة وضعها في حدث تحميل النمىذج ' 0 = List1.ListIndex If List1.ListCount > 0 Then 1

12 ListBox 99 1 Command Buttons Project properties Object Property Setting Form1 Form1 CommandButton1 cmdave Average CommandButton2 cmdodd Odd CommandButton3 cmdmax Maximum CommandButton4 cmdend End CommandButton5 cmdnew ListBox1 Project code Private Sub Form_Load() For i = 1 To 99 List1.AddItem i 2 New Selection List1 1 'simple

13 Private Sub cmdave_click() Dim sum As Single, n As Integer For i = 0 To List1.ListCount - 1 If List1.Selected(i) Then sum = sum + List1.List(i) n = n + 1 MsgBox "The average is " & sum / n Private Sub cmdend_click() End Private Sub cmdmax_click() Dim m As Integer m = List1. For i = 0 To List1.ListCount - 1 If List1.Selected(i) Then If List1.List(i) > m Then m = List1.List(i) MsgBox "The maximum number is " & m Private Sub cmdnew_click() For i = 0 To List1.ListCount - 1 List1.Selected(i) = False Private Sub cmdodd_click() Dim n As Integer For i = 0 To List1.ListCount - 1 If List1.Selected(i) Then If List1.List(i) Mod 2 <> 0 Then n = n + 1 MsgBox "There are " & n & " Odd numbers" 3

14 Box.Keyboard Project properties Object Property Setting Form1 Form1 CommandButton1 Command1 Space CommandButton2 Command2 New Line CommandButton3 Command3 Box1 Multiline ScrollBars Clear 1 فساغ True 3 ListBox1 List1 Project code Private Sub Command1_Click() 1. = 1. + " " Private Sub Command2_Click() 1. = 1. + vbcrlf Private Sub Command3_Click() 1. = "" Private Sub Form_Load() For i = Asc("a") To Asc("z") List1.AddItem Chr(i) 4

15 Private Sub List1_Click() 1. = 1. + List1. 5

Lecture Using ListBox and ComboBox Controls In Visual Basic 6: list box

Lecture Using ListBox and ComboBox Controls In Visual Basic 6: list box Lecture 10+11+12 7- Using ListBox and ComboBox Controls In 6: list box A list box displays a list of items from which the user can select one or more items. If the number of items exceeds the number that

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

University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab. LostFocus Resize System event

University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab. LostFocus Resize System event Events Private Sub Form_Load() Load Close Unload Private Sub Form_Unload(Cancel As Integer) Cancel=True Cancel * Show Activate SetFocus Focus Deactivate SetFocus GotFocus CommandButton LostFocus Resize

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

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

UnitSales Array Product Number Sales Region

UnitSales Array Product Number Sales Region IS 320 Aut 96 Page 1 1. (10) Assume you have a list box named List1, which has its Multiselect property set to 2 - Extended. Write a click event procedure for this list box that deletes the selected items

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

IS 320 Spring 96 Page 1 Exam 1. Please use your own paper to answer the following questions. Point values are shown in parentheses.

IS 320 Spring 96 Page 1 Exam 1. Please use your own paper to answer the following questions. Point values are shown in parentheses. IS 320 Spring 96 Page 1 Please use your own paper to answer the following questions. Point values are shown in parentheses. 1. (10) Consider the following segment of code: If txtansicode.text < "0" Or

More information

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

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

Catching Events. Bok, Jong Soon

Catching Events. Bok, Jong Soon Catching Events Bok, Jong Soon Jongsoon.bok@gmail.com www.javaexpert.co.kr What Is an Event? Events Describe what happened. Event sources The generator of an event Event handlers A function that receives

More information

IS 320 A/B Spring 97 Page 1 Exam 1

IS 320 A/B Spring 97 Page 1 Exam 1 IS 320 A/B Spring 97 Page 1 Please use the paper supplied by the instructor to answer the questions. Question point values are shown in parentheses. 1. (18) What output is generated by the three MsgBox

More information

Please answer questions in the space provided. Question point values are shown in parentheses.

Please answer questions in the space provided. Question point values are shown in parentheses. IS 320 Spring 99 Page 1 Please answer questions in the space provided. Question point values are shown in parentheses. 1. (15) Assume you have the following variable declarations and assignments: Dim A

More information

VB komande. Programiranje 1

VB komande. Programiranje 1 VB komande Programiranje 1 Zadatak 1: Sastaviti program koji se sastoji iz jedne ListBox kontrole, jedne Textbox kontrole i dva komandna dugmeta. Klikom na prvo komandno dugme umeće se u ListBox sadržaj

More information

Answer: C. 7. In window we can write code A. Immediate window B. Locals window C. Code editor window D. None of these. Answer: C

Answer: C. 7. In window we can write code A. Immediate window B. Locals window C. Code editor window D. None of these. Answer: C 1. Visual Basic is a tool that allows you to develop application in A. Real time B. Graphical User Interface C. Menu Driven D. None Of These 2. IDE stands for.. A. Internet Development Environment B. Integrated

More information

Remainder Cordial Labeling of Graphs

Remainder Cordial Labeling of Graphs Journal of Algorithms and Computation journal homepage: http://jac.ut.ac.ir Remainder Cordial Labeling of Graphs R. Ponraj 1, K. Annathurai and R. Kala 3 1 Department of Mathematics, Sri Paramakalyani

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

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6)

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) Section 5 AGENDA 8. Events

More information

Respond to Data Entry Events

Respond to Data Entry Events Respond to Data Entry Events Callahan Chapter 4 Understanding Form and Control Events Developer s Goal make data entry easy, fast, complete, accurate Many form- and control-level events occur as user works

More information

CS130/230 Lecture 12 Advanced Forms and Visual Basic for Applications

CS130/230 Lecture 12 Advanced Forms and Visual Basic for Applications CS130/230 Lecture 12 Advanced Forms and Visual Basic for Applications Friday, January 23, 2004 We are going to continue using the vending machine example to illustrate some more of Access properties. Advanced

More information

JavaScript and Events

JavaScript and Events JavaScript and Events CS 4640 Programming Languages for Web Applications [Robert W. Sebesta, Programming the World Wide Web Jon Duckett, Interactive Frontend Web Development] 1 Events Interactions create

More information

Interacting with Measurement Studio Graphs in Visual Basic Heather Edwards

Interacting with Measurement Studio Graphs in Visual Basic Heather Edwards Application Note 163 Interacting with Measurement Studio Graphs in Visual Basic Heather Edwards Introduction You have collected your measurements, displayed them on a Measurement Studio 1 2D Graph or 3D

More information

2-26 Learn Visual Basic 6.0

2-26 Learn Visual Basic 6.0 2-26 Learn Visual Basic 6.0 cmdcompute Click Event: Private Sub cmdcompute_click() Dim Mean As Single Dim StdDev As Single txtinput.setfocus Make sure there are at least two values If NumValues < 2 Then

More information

Lookup Project. frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function:

Lookup Project. frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function: Lookup Project frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function: Help About, in a Message Box lookup.vbp programmed by C.Gribble Page 2 Code for

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

Hell is other browsers - Sartre. The touch events. Peter-Paul Koch (ppk) DIBI, 28 April 2010

Hell is other browsers - Sartre. The touch events. Peter-Paul Koch (ppk)   DIBI, 28 April 2010 Hell is other browsers - Sartre The touch events Peter-Paul Koch (ppk) http://quirksmode.org http://twitter.com/ppk DIBI, 28 April 2010 The desktop web Boring! - Only five browsers with only one viewport

More information

CSE 154 LECTURE 10: MORE EVENTS

CSE 154 LECTURE 10: MORE EVENTS CSE 154 LECTURE 10: MORE EVENTS Problems with reading/changing styles click Me HTML window.onload = function() { document.getelementbyid("clickme").onclick = biggerfont; };

More information

The High-Powered Database The Whole Team Can Use. USING LOTUSSCRIPT IN APPROACH

The High-Powered Database The Whole Team Can Use. USING LOTUSSCRIPT IN APPROACH E.D.I.T.I.O.N The High-Powered Database The Whole Team Can Use. USING LOTUSSCRIPT IN APPROACH Under the copyright laws, neither the documentation nor the software may be copied, photocopied, reproduced,

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

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

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

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

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

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

2Practicals Visual Basic 6.0

2Practicals Visual Basic 6.0 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

More information

SYLLABUS B.Com (Computer) VI SEM Subject Visual Basic Unit I

SYLLABUS B.Com (Computer) VI SEM Subject Visual Basic Unit I SYLLABUS B.Com (Computer) VI SEM Subject Visual Basic Unit I UNIT I UNIT II UNIT III UNIT IV UNIT V Introduction to Visual Basic: Introduction Graphics User Interface (GUI), Programming Language (Procedural,

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

Creating Dashboard Widgets. Version: 16.0

Creating Dashboard Widgets. Version: 16.0 Creating Dashboard Widgets Version: 16.0 Copyright 2017 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

Chapter 1. Block Diagram. Text .. 1

Chapter 1. Block Diagram. Text .. 1 Chapter 1 ก Visual Basic Scilab ก ก Visual Basic Scilab ก ก (Temporary File) ก ก ก ก ก ก Visual Basic ก (Interface) ก Scilab Text File ก Visual Basic ก ก ก ก Block Diagram ก ก Visual Basic ก Scilab ก.sce

More information

VBA Foundations, Part 7

VBA Foundations, Part 7 Welcome to this months edition of VBA Foundations in its new home as part of AUGIWorld. This document is the full version of the article that appears in the September/October issue of Augiworld magazine,

More information

Contents. Using Interpreters... 5 Using Compilers... 5 Program Development Life Cycle... 6

Contents. Using Interpreters... 5 Using Compilers... 5 Program Development Life Cycle... 6 Contents ***Introduction*** Introduction to Programming... 1 Introduction... 2 What is a Program?... 2 Role Played by a Program to Perform a Task... 2 What is a Programming Language?... 3 Types of Programming

More information

of numbers, converting into strings, of objects creating, sorting, scrolling images using, sorting, elements of object

of numbers, converting into strings, of objects creating, sorting, scrolling images using, sorting, elements of object Index Symbols * symbol, in regular expressions, 305 ^ symbol, in regular expressions, 305 $ symbol, in regular expressions, 305 $() function, 3 icon for collapsible items, 275 > selector, 282, 375 + icon

More information

PowerTerm WebConnect WebView

PowerTerm WebConnect WebView PowerTerm WebConnect WebView Version 5.6 Developer's Manual Important Notice This manual is subject to the following conditions and restrictions: The proprietary information belonging to Ericom Software

More information

DAQBench. 32-bit ActiveX controls for Measurement and Automation. User Interface Controls Reference

DAQBench. 32-bit ActiveX controls for Measurement and Automation. User Interface Controls Reference DAQBench 32-bit ActiveX controls for Measurement and Automation User Interface Controls Reference Contents D ActiveX control...1 D7Segment ActiveX control... 11 DLEDMeter ActiveX control...17 DSlide ActiveX

More information

GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN COMPUTER ENGINEERING Semester: 4

GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN COMPUTER ENGINEERING Semester: 4 GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN COMPUTER ENGINEERING Semester: 4 Subject Name System analysis and Design Sr. No. Course content 1. 1. Introduction 1.1. The Software Engineering Discipline -

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

Extending the Unit Converter

Extending the Unit Converter Extending the Unit Converter You wrote a unit converter previously that converted the values in selected cells from degrees Celsius to degrees Fahrenheit. You could write separate macros to do different

More information

The HOME Tab: Cut Copy Vertical Alignments

The HOME Tab: Cut Copy Vertical Alignments The HOME Tab: Cut Copy Vertical Alignments Text Direction Wrap Text Paste Format Painter Borders Cell Color Text Color Horizontal Alignments Merge and Center Highlighting a cell, a column, a row, or the

More information

User Manual. Eventide Inc. April 15, 2008

User Manual. Eventide Inc. April 15, 2008 MediaWorks TM User Manual Eventide Inc. April 15, 2008 New to MediaWorks? A handy Quick Start guide will help you install the software and begin monitoring your Eventide recorders right away. Familiar

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 OPERATING SYSTEM Sr.No Course content 1.. Introduction Operating System Concept OS Services Types of Operating

More information

DAY 7: EXCEL CHAPTER 5. Divya Ganesan February 5, 2013

DAY 7: EXCEL CHAPTER 5. Divya Ganesan February 5, 2013 DAY 7: EXCEL CHAPTER 5 Divya Ganesan divya.ganesan@mail.wvu.edu February 5, 2013 1 FREEZING ROWS AND COLUMNS Freezing keeps rows and columns visible during scrolling Click View tab in Ribbon Click on Freeze

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

Using OLE in SAS/AF Software

Using OLE in SAS/AF Software 187 CHAPTER 9 Using OLE in SAS/AF Software About OLE 188 SAS/AF Catalog Compatibility 188 Inserting an OLE Object in a FRAME Entry 188 Inserting an OLE Object 189 Pasting an OLE Object from the Clipboard

More information

ENGR/CS 101 CS Session Lecture 4

ENGR/CS 101 CS Session Lecture 4 ENGR/CS 101 CS Session Lecture 4 Log into Windows/ACENET (reboot if in Linux) Start Microsoft Visual Studio 2010 Finish exercise from last time Lecture 4 ENGR/CS 101 Computer Science Session 1 Outline

More information

GETTING STARTED WITH VBA

GETTING STARTED WITH VBA Split Your Windows Click & Retrieve Source CODE! Add a Splitter class to your application to give it a Windows 95 Explorer-style splitter bar. by Chris Barlow n the last few columns I ve looked at the

More information

Switches between worksheet and menu / Ribbon. Calculates all worksheets in all open workbooks. Highlights shortcut keys of Menu and Ribbon items.

Switches between worksheet and menu / Ribbon. Calculates all worksheets in all open workbooks. Highlights shortcut keys of Menu and Ribbon items. Check for updates http://www.excelbee.com/all-excel-shortcuts/ Shortcut with Function Key Function Keys Description F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 Open "Microsoft Office Excel Help". Edit an Excel

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

Computer Science First Exams Pseudocode Standard Data Structures Examples of Pseudocode

Computer Science First Exams Pseudocode Standard Data Structures Examples of Pseudocode Computer Science First Exams 2014 Pseudocode Standard Data Structures Examples of Pseudocode Candidates are NOT permitted to bring copies of this document to their examinations. 1 Introduction The purpose

More information

DataViews Custom Editor Reference Manual. DataViews for Windows Version 2.0

DataViews Custom Editor Reference Manual. DataViews for Windows Version 2.0 DataViews Custom Editor Reference Manual DataViews for Windows Version 2.0 GE Fanuc DataViews Headquarters 47 Pleasant Street Northampton, MA 01060 U.S.A. Telephone:(413) 586-4144 FAX:(413) 586-3805 email:info@dvcorp.com

More information

University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab.

University of Technology Laser & Optoelectronics Engineering Department Visual basic Lab. DriveListBox Control, DirListBox Control, and FileListBox Control CommonDialog Control 1 2 DriveListBox Control disk drive Important Properties object.drive [= drive] Drive Floppy disks "a:" or "b:", and

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

Assignments. About Assignments. Include in Final Grade. Weighting. Extra Credit

Assignments. About Assignments. Include in Final Grade. Weighting. Extra Credit Assignments About Assignments You can create one assignment at a time as you progress through the term, or you can set up assignments for the entire term before the term starts. Having all assignments

More information

Outlook 2010 Calendar

Outlook 2010 Calendar Outlook 2010 Calendar Table of Contents The Calendar... 4 The Week View... 5 Day View... 6 Month View... 7 Schedule View... 8 Scheduling Appointments... 9 Appointments... 10 Meetings... 10 Creating Appointments/Meetings...

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

Overview About KBasic

Overview About KBasic Overview About KBasic The following chapter has been used from Wikipedia entry about BASIC and is licensed under the GNU Free Documentation License. Table of Contents Object-Oriented...2 Event-Driven...2

More information

Write the code for the click event for the Move>> button that emulates the behavior described above. Assume you already have the following code:

Write the code for the click event for the Move>> button that emulates the behavior described above. Assume you already have the following code: IS 320 Spring 2000 page 1 1. (13) The figures below show two list boxes before and after the user has clicked on the Move>> button. Notice that the selected items have been moved to the new list in the

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

Visual Basic

Visual Basic 1 P a g e Visual Basic 6.0 Punjab University papers Visual Basic 6.0 2007 Question No 1(a). What is an algorithm and pseudo code? 5.0 1(b). What is OOP? Explain its importance 5.0 Question No 2(a) what

More information

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6)

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) AGENDA 3. Executing VBA

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

Sébastien Mathier wwwexcel-pratiquecom/en While : Loops make it possible to repeat instructions a number of times, which can save a lot of time The following code puts sequential numbers into each of the

More information

10Tec igrid ActiveX 4.x What's New in the Latest Builds

10Tec igrid ActiveX 4.x What's New in the Latest Builds What's New in igrid ActiveX 4.x - 1-2011-May-19 10Tec igrid ActiveX 4.x What's New in the Latest Builds Keywords used to classify changes: [New] a totally new feature; [Change] a change in a member functionality

More information

Visual Studio.NET enables quick, drag-and-drop construction of form-based applications

Visual Studio.NET enables quick, drag-and-drop construction of form-based applications Visual Studio.NET enables quick, drag-and-drop construction of form-based applications Event-driven, code-behind programming Visual Studio.NET WinForms Controls Part 1 Event-driven, code-behind programming

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

DW DIGs Model Windows Tricks

DW DIGs Model Windows Tricks Window Menu 1. Window > Cascade Windows All open windows that aren't minimized at the bottom of the screen will be offset diagonally so you can see the title bar of each. 2. Window > Tile Windows All open

More information

WinForms Applications

WinForms Applications Agenda WinForms Applications Writing native Windows programs Tuesday, November 2, 2004 1 PWindows Applications PEvents and event handlers PLayered (tiered) model of software PFocus PForm designer and controls

More information

Use the Windows Start button. Use a desktop shortcut

Use the Windows Start button. Use a desktop shortcut Lesson 1 1 Use the Windows Start button 2 3 Use a desktop shortcut Used Most Frequently Used Programs on left side of Start Menu #5 Fastest way for already created documents 4 5 Right-click a Word document

More information

Visual Basic.NET. 1. Which language is not a true object-oriented programming language?

Visual Basic.NET. 1. Which language is not a true object-oriented programming language? Visual Basic.NET Objective Type Questions 1. Which language is not a true object-oriented programming language? a.) VB.NET b.) VB 6 c.) C++ d.) Java Answer: b 2. A GUI: a.) uses buttons, menus, and icons.

More information

GUI Event Handling 11. GUI Event Handling. Objectives. What is an Event? Hierarchical Model (JDK1.0) Delegation Model (JDK1.1)

GUI Event Handling 11. GUI Event Handling. Objectives. What is an Event? Hierarchical Model (JDK1.0) Delegation Model (JDK1.1) Objectives Write code to handle events that occur in a GUI 11 GUI Event Handling Describe the concept of adapter classes, including how and when to use them Determine the user action that originated the

More information

2. (16) Salesperson bonuses are paid based on a combination of total unit sales and the number of new accounts according to the following table:

2. (16) Salesperson bonuses are paid based on a combination of total unit sales and the number of new accounts according to the following table: IS 320 Exam 1 page 1 Please use the space provided on this exam to answer the questions. Clearly show your work for possible partial credit. Question point values are shown in parenthses. 1. (16) Given

More information

For the Beginner: c) Click the settings tab to set screen resolution d) Set resolution with slider bar.

For the Beginner: c) Click the settings tab to set screen resolution d) Set resolution with slider bar. For the Beginner: Preparing and Logging In to Run JobSite OnLine 1) Jobsite works best with a screen resolution of at least 800 x 600 preferably 1024 x 768. To set this, follow the instructions below.

More information

SAFARI General Instructions

SAFARI General Instructions SAFARI General Instructions Open Excel. Click on the Data Tab. Click on From Other Sources. Select From Miscrosoft Query. Select the Database you would like to pull from: Insert your Reflections Password

More information

JavaScript: More Syntax and Using Events

JavaScript: More Syntax and Using Events JavaScript: Me Syntax and Using Events CISC 282 October 4, 2017 null and undefined null is synonymous with nothing i.e., no value, nothing there undefined in synonymous with confusion i.e., what's this?

More information

Universitas Sumatera Utara

Universitas Sumatera Utara Option Explicit DefLng A-Z '--------------------------------------------------------------------------------------------- #Const Test = False '---------------------------------------------------------------------------------------------

More information

Hell is other browsers - Sartre. The touch events. Peter-Paul Koch (ppk) WebExpo, 24 September 2010

Hell is other browsers - Sartre. The touch events. Peter-Paul Koch (ppk)     WebExpo, 24 September 2010 Hell is other browsers - Sartre The touch events Peter-Paul Koch (ppk) http://quirksmode.org http://twitter.com/ppk WebExpo, 24 September 2010 The desktop web Boring! - Only five browsers with only one

More information

Creating a Pivot Table

Creating a Pivot Table Contents Introduction... 1 Creating a Pivot Table... 1 A One-Dimensional Table... 2 A Two-Dimensional Table... 4 A Three-Dimensional Table... 5 Hiding and Showing Summary Values... 5 Adding New Data and

More information

NOTES: Procedures (module 15)

NOTES: Procedures (module 15) Computer Science 110 NAME: NOTES: Procedures (module 15) Introduction to Procedures When you use a top-down, structured program design, you take a problem, analyze it to determine what the outcome should

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

shift from the page Bill Scott Yahoo! Ajax Evangelist

shift from the page Bill Scott Yahoo! Ajax Evangelist shift from the page Bill Scott Yahoo! Ajax Evangelist b.scott@yahoo.com background. 2 developer.yahoo.com/ypatterns surfacing a vocabulary. current patterns. Breadcrumbs. Module Tabs. Navigation Tabs.

More information

Information Design. Professor Danne Woo! infodesign.dannewoo.com! ARTS 269 Fall 2018 Friday 10:00PM 1:50PM I-Building 212

Information Design. Professor Danne Woo! infodesign.dannewoo.com! ARTS 269 Fall 2018 Friday 10:00PM 1:50PM I-Building 212 Information Design Professor Danne Woo! infodesign.dannewoo.com! ARTS 269 Fall 2018 Friday 10:00PM 1:50PM I-Building 212 Interactive Data Viz Week 8: Data, the Web and Datavisual! Week 9: JavaScript and

More information

22. VB Programming Fundamentals Data Access with Data Objects

22. VB Programming Fundamentals Data Access with Data Objects 22. VB Programming Fundamentals Data Access with Data Objects 22.1 Data Access Object MS Data Access Object (DAO) enables you to use a programming language to access and manipulate data in local or remote

More information

Excel Introduction to Excel Databases & Data Tables

Excel Introduction to Excel Databases & Data Tables Creating an Excel Database Key field: Each record should have some field(s) that helps to uniquely identify them, put these fields at the start of your database. In an Excel database each column is a field

More information

REFERENCE MATERIALS. Assignment, Display, and Input Evaluates expression and assigns the result to the variable a.

REFERENCE MATERIALS. Assignment, Display, and Input Evaluates expression and assigns the result to the variable a. a expression Assignment, Display, and Input Evaluates expression and assigns the result to the variable a. DISPLAY (expression) Displays the value of expression, followed by a space. INPUT () Accepts a

More information

ต วอย างการสร างฟอร ม เมน การใช งาน

ต วอย างการสร างฟอร ม เมน การใช งาน ต วอย างการสร างฟอร ม เมน การใช งาน Option Explicit Dim conn As New ADODB.Connection Dim rs As New ADODB.Recordset Dim Sql As String Private Sub Command6_Click() Form2.Hide Form3.Show Private Sub Command7_Click()

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

PHP / MYSQL DURATION: 2 MONTHS

PHP / MYSQL DURATION: 2 MONTHS PHP / MYSQL HTML Introduction of Web Technology History of HTML HTML Editors HTML Doctypes HTML Heads and Basics HTML Comments HTML Formatting HTML Fonts, styles HTML links and images HTML Blocks and Layout

More information

Layout and display. STILOG IST, all rights reserved

Layout and display. STILOG IST, all rights reserved 2 Table of Contents I. Main Window... 1 1. DEFINITION... 1 2. LIST OF WINDOW ELEMENTS... 1 Quick Access Bar... 1 Menu Bar... 1 Windows... 2 Status bar... 2 Pop-up menu... 4 II. Menu Bar... 5 1. DEFINITION...

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

Contents. More Controls 51. Visual Basic 1. Introduction to. xiii. Modify the Project 30. Print the Project Documentation 35

Contents. More Controls 51. Visual Basic 1. Introduction to. xiii. Modify the Project 30. Print the Project Documentation 35 Contents Modify the Project 30 Introduction to Print the Project Documentation 35 Visual Basic 1 Sample Printout 36 Writing Windows Applications The Form Image 36 The Code 37 with Visual Basic 2 The Form

More information

CS193X: Web Programming Fundamentals

CS193X: Web Programming Fundamentals CS193X: Web Programming Fundamentals Spring 2017 Victoria Kirst (vrk@stanford.edu) Today's schedule Today: - Keyboard events - Mobile events - Simple CSS animations - Victoria's office hours once again

More information