Lecture 5 Menu Strip Demo with Dialog Controls.

Slides:



Advertisements
Similar presentations
Value Control with Variables Joe Long Robofest Student Assistant Lawrence Tech Computer Science Major April 12, 2007.
Advertisements

A window application ---to know Dialogs (Week 7) ~csdywang/ta.htm.
Copyright © 2012 Pearson Education, Inc. Chapter 11 MORE WINDOWS CONTROLS & STANDARD DIALOG BOXES.
Chapter 5 Menus, Common Dialog Boxes, Sub Procedures, and Function Procedures Copyright © 2011 by The McGraw-Hill Companies, Inc. All Rights Reserved.
C# Programming: From Problem Analysis to Program Design1 Programming Based on Events C# Programming: From Problem Analysis to Program Design 3 rd Edition.
Using Multiple Forms. Creating a New Form ProjectAdd Windows Form.
1 After completing this lesson, you will be able to: View and open folders. Open, edit, and save files. Print files. Sort files. (continued)
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
Dr Dat Tran - Week 4 Lecture Notes 1 MenuStrip Programming Graphical User Interfaces PG (7110) University of Canberra School of Information Sciences &
Introduction to Graphical User Interfaces. Objectives * Students should understand what a procedural program is. * Students should understand what an.
5-1 aslkjdhfalskhjfgalsdkfhalskdhjfglaskdhjflaskdhjfglaksjdhflakshflaksdhjfglaksjhflaksjhf.
McGraw-Hill © 2009 The McGraw-Hill Companies, Inc. All rights reserved. Chapter 5 Menus, Common Dialog Boxes, Sub Procedures, and Function Procedures.
Chapter 5 Menus, Common Dialog Boxes, and Methods Programming in C#.NET © 2003 by The McGraw-Hill Companies, Inc. All rights reserved.
1 Working with Menus and Dialog Boxes. 2 Objectives You will be able to Create and edit menus for Windows Forms applications. Write code to handle menu.
HOW TO BUILD YOUR CULINARY ARTS PORTFOLIO. Adding a New Slide/ Duplicating a Slide Go to the slide menu on the left side of the screen Right click to.
Dr Dat Tran - Week 4 Lecture Notes 1 ToolStrip Programming Graphical User Interfaces PG (7110) University of Canberra School of Information Sciences &
C-Map Tutorial How to create and save a concept map using C-Map, export a C-Map as an image, and export a C-Map as a webpage.
Chapter 5 Menus, Common Dialog Boxes, Sub Procedures, and Function Procedures Copyright © 2011 by The McGraw-Hill Companies, Inc. All Rights Reserved.
Quick guide on making PowerPoint slides  PowerPoint is a presentation program  A PowerPoint slideshow is a stack of slides being presented one after.
Working with GridView Control: Adding Columns. Adding Buttons to a Bound GridView: 1. Drag the WebProduct table from Data connection to a page 2. Demo.
BIL528 – Bilgisayar Programlama II Introduction 1.
Microsoft Outlook 2010 Chapter 3 Managing Contacts and Personal Contact Information with Outlook.
Saint James School of Medicine.  Objectives:  Add course Information  syllabus  Lecture Notes, handouts, slides  Problem solving or discussion areas.
1 After completing this lesson, you will be able to: Change the format of a table. Sort records in a table. Find records in a table Use filters with a.
Course ILT Forms and queries Unit objectives Create forms by using AutoForm and the Form Wizard, and add or modify form headers and footers Open and enter.
1 After completing this lesson, you will be able to: Create and run a query. Specify criteria in a query. Create a calculated field. Create a multiple-table.
Lecture 7 Dialog Controls MDI Parent/Child Interaction.
1 Flash Basics Exercise Guide Making Animated Text  1.1 Open Flash 5.0 working environment frame 1  1.2 Highlight frame 1 of the first layer Insert.
CMAP Concept Mapping Activity Climate Change Unit.
The Professional Touch Programming Right from the Start with Visual Basic.NET 1/e 10.
Lecture 1 Getting Started with Programming using Visual Studio.
CS 281 – Fall 2015 Lab 4 Parametric Query and Forms in MS Access.
Click your mouse for next slide Adding Text Click in any text box Type in your text OR.
Presentation Title Your Name Date. ICANN MEETING NO. 38 | JUNE 2010 ICANN MEETING No. 38 | June 2010.
Simple Clicker App WPF App using C#. App Requirement Need a ‘counter’ display, which starts at 0 Need a ‘clicker’ button ! Pressing the clicker every.
Compunet Corporation Programming with Visual Basic.NET Working with Menus and Dialog Boxes Week 14 Tariq Aziz and Kevin Jones.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
The Trans-Atlantic Slave Trade Yr9 WALT – Explain how the Slave Trade operated Describe the transactions and stages of the journey. WILF - A well constructed.
CS 281 – Fall 2010 Lab 4 Parametric Query and Forms in MS Access.
Building a Simple Text Editor. Create a text editor with the following features: (1) Uses a MenuStrip with File, and Edit tabs (2) The user can create.
Lessons Copy and Paste Text Drag and Drop Text 2-Saving Documents 3- Printing 4-Inserting Tables Modifying Page Layout Format Page Margins Insert a Blank.
To add a new title to the current slide, select “Click to add title” and type. Once completed, save the presentation.
Lesson 1: Learning Worksheet Fundamentals Microsoft Office Excel 2003 Lesson 1 Learning Worksheet Fundamentals.
Course Number and Name Do not move or resize the white textbox; font change and text edits MUST fit inside white text box. It is recommended to leave background.
TEMPLATE INSTRUCTIONS Please use these instructions to complete your TV Ad Find YOUR Department / Program template or use the general College of Arts &
Toolbars and buttons in Microsoft Word
Creating a wiki phage for your lab notebook
Save your modified slide as a JPEG picture: Click “File”
Using Multiple Forms.
Custom dialog boxes Unit objectives
Multi-form applications and dialogs
Course Name Course Number Section Term – Instructor Name
Creating a Windows Forms User Interface
A simple template to assist with thinking skills
How to Embed Videos into Powerpoint
Instructions for Windows users:
A simple template to assist with thinking skills
Instructions for Windows users:
Blackboard Tutorial (Student)
A simple template to assist with thinking skills
Blackboard Save a File as .rtf
Course Name Course Number Section Term – Instructor Name
YOUR text YOUR text YOUR text YOUR text
A simple template to assist with thinking skills
How To Photoshop Intro.
HOW TO CREATE BIBLIOGRAPHY:
Edit PowerPoint file using Microsoft PowerPoint:
Header here Subheader here subheader
A simple template to assist with thinking skills
Click to edit subtitle Click to edit title.
Presentation transcript:

Lecture 5 Menu Strip Demo with Dialog Controls

In your next project you will create a simple Windows Forms application that uses a menu strip to organize I/O and Edit operations on text files. The controls we will be reviewing include: MenuStrip OpenFileDialog SaveFileDialog FontDialog ColorDialog

Create a New Project

Adding a MenuStrip Control click and drag a MenuStrip to the form

add a header named File

add Subheadings for New, Open, and Save under File

drag and drop a Rich TextBox onto the form

doubleClick the subheadings to create click event handlers for each

OpenFileDialog for Text Files

SaveFileDialog for Text Files