2g – ComboBox Lingma Acheson CSCI N331 VB .NET Programming

Slides:



Advertisements
Similar presentations
4d. Structured Query Language – JOIN Operation Lingma Acheson Department of Computer and Information Science IUPUI CSCI N207 Data Analysis with Spreadsheets.
Advertisements

1 Lab6 Lab6 ComboBox Control Properties, Methods and Events.
Graphical User Interface (GUI) A GUI allows user to interact with a program visually. GUIs are built from GUI components. A GUI component is an object.
Chapter 31 Visual Basic Controls A Form is a windows-style screen displayed by Visual Basic programs. In a form, a programmer can create objects in a form.
1a – Getting Started Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
6. Database Reports Lingma Acheson Department of Computer and Information Science IUPUI CSCI N207 Data Analysis Using Spreadsheets 1.
1b – Inside Visual Studio Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
Chapter 12: Using Controls. Examining the IDE’s Automatically Generated Code A new Windows Forms project has been started and given the name FormWithALabelAndAButton.
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Assignment #1 Advanced Computer Programming.
12a. Regression Analysis, Part 1 CSCI N207 Data Analysis Using Spreadsheet Lingma Acheson Department of Computer and Information Science,
3 - Variables Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
9c. Line Charts CSCI N207 Data Analysis Using Spreadsheet Department of Computer and Information Science, IUPUI Lingma Acheson
1 CSCI N201 Programming Concepts and Database 9 – Loops Lingma Acheson Department of Computer and Information Science, IUPUI.
6c – Function Procedures Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
CSC115 Introduction to Computer Programming Zhen Jiang Dept. of Computer Science West Chester University West Chester, PA 19383
Class 2 Remote Instruction Review of Working with Buttons EDU 556 Programming for Instruction Dr. Steve Broskoske This is an audio PowerCast. Make sure.
2a – Object Oriented Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
9e. Scatter Charts CSCI N207 Data Analysis Using Spreadsheet Department of Computer and Information Science, IUPUI Lingma Acheson
VB Objects & Events (Exercises) School of Business Eastern Illinois University © Abdou Illia, Spring 2003 (Week 3, Friday 1/31/2003)
2d – CheckBox Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
COMPUTER PROGRAMMING I 3.02 Apply Properties Associated with the Controls.
Controls Part 2. DateTimePicker Control Used for representing Date/Time information and take it as input from user. Date information is automatically.
2e – RadioButtons Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
7. Data Import Export Lingma Acheson Department of Computer and Information Science IUPUI CSCI N207 Data Analysis Using Spreadsheets 1.
6b – Sub Procedure With Parameters Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
2c – Textboxes and Buttons Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
5b – For Loops Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
9d. Pie Charts CSCI N207 Data Analysis Using Spreadsheet Department of Computer and Information Science, IUPUI Lingma Acheson
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
5a – While Loops Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
Class Orientation Lingma Acheson Department of Computer and Information Science IUPUI CSCI N207 Data Analysis with Spreadsheets 1.
2b. Create an Access Database Lingma Acheson Department of Computer and Information Science IUPUI CSCI N207 Data Analysis with Spreadsheets 1.
3.02 APPLY PROPERTIES ASSOCIATED WITH THE CONTROLS Computer Programming I.
Visual Basic .NET BASICS
Apply Procedures to Develop Menus, List Box and Combo Box Objects
Microsoft Visual Basic 2005 BASICS
Chapter 8: Writing Graphical User Interfaces
Introduction to Computing
Chapter 2 – Introduction to the Visual Studio .NET IDE
3.01 Apply Controls Associated With Visual Studio Form
How To Add Titles, Captions And Credits In Windows Movie Maker
3.01 Apply Controls Associated With Visual Studio Form
Apply Procedures to Develop Menus, List Box and Combo Box Objects
Chapter 3 Fundamentals of Programming in Visual Basic 3
Standard Controls.
Repeating Program Instructions
Please use speaker notes for additional information!
المحاضرة الأولى Lab(1) أ.ساره الأحمدي برمجة حاسب 2.
Welcome with Ifs CSC 230 (Blum).
Building an Application in the Visual Basic .NET Environment
Lingma Acheson Department of Computer and Information Science IUPUI
Programming Concepts and Database
CSCI N207 Data Analysis Using Spreadsheet
7 – Variables, Input and Output
4 – History of Programming Languages
2b – Labels and Pictures Lingma Acheson CSCI N331 VB .NET Programming
Information Technology Committee
Middle Managers Committee
Action Items Background: Committee Involved: Action Requested:
Programming Concepts and Database
Program & Staff Development Committee
Family & Consumer Sciences
Custom Forms with VBA in Excel In-Class Exercise #11
4a- If And Else Lingma Acheson CSCI N331 VB .NET Programming
4d – Program Design Lingma Acheson CSCI N331 VB .NET Programming
Communications Committee
Ag & Natural Resources Committee
Presentation transcript:

2g – ComboBox Lingma Acheson CSCI N331 VB .NET Programming Department of Computer and Information Science, IUPUI

ComboBox Display a box that allows user to select one item from a list. Properties: Name: cboYyyy BackColor: background color in the box Font, ForeColor: Applies to texts in the box Items: Can add items from the design window. Will learn later how to add items by coding. Sorted: If set to true, items will be listed in ascending order regardless of the order entered. Text: what you see in the first line of the box. Usually used for instructions.