Create Windows-based Applications by Using Visual Studio 98-362 Windows Development Fundamentals LESSON 1.3.

Slides:



Advertisements
Similar presentations
Chapter 12: Using ADO.NET 2.0 Programming with Microsoft Visual Basic 2005, Third Edition.
Advertisements

CA 121 Intro to Programming Tariq Aziz and Kevin Jones GUI Programming in Visual Studio.NET Chapter 1 Tariq Aziz and Kevin Jones.
 2002 Prentice Hall. All rights reserved. Chapter 2 - Introduction to the Visual Studio.NET IDE Outline 2.1Introduction 2.2Overview of the Visual Studio.NET.
Compunet Corporation Programming with Visual Basic.NET GUI Week # 11 Tariq Ibn Aziz.
Microsoft Access 2007 Microsoft Access 2007 Introduction to Database Programs.
Beginning Programming with the Visual Studio.NET Environment.
Getting Started Example ICS2O curriculum
Microsoft Visual Basic 2012 CHAPTER TWO Program and Graphical User Interface Design.
UNIVERSIDAD TECNOLÓGICA ECOTEC. ISO 9001:2008 Module 2 Creating Web Applications by Using Microsoft® Visual Studio 2010 and Microsoft.NET–Based Languages.
Moving & Copying Web Applications 1. 2 Why Do We Need to Copy or Move a Web Application?  So you can run someone else’s sample code.  So you can backup.
Dharmesh Patel +44 (0) Friday, 06 February 2009 MPUG London Chapter.
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. WEB.
Understanding Code Compilation and Deployment Lesson 4.
Programming with Microsoft Visual Basic 2012 Chapter 12: Web Applications.
A First Look At Microsoft Visual Basic Lesson 1. What is Microsoft Visual Basic? Microsoft Visual Basic is a software development tool, which means it.
Visual Basic 2005 CHAPTER 2 Program and Graphical User Interface Design.
Integrated Development Environment (IDE)
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. WEB.
Using Microsoft Visual Studio 2005 Original by Suma Rao Revised by John G. McMahon ( 9/6/2008 )
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
Visual Basic 2005 CHAPTER 2 Program and Graphical User Interface Design.
Module 1: Getting Started. Introduction to.NET and the.NET Framework Exploring Visual Studio.NET Creating a Windows Application Project Overview Use Visual.
Web Development in Microsoft Visual Studio Slide 2 Lecture Overview How to create a first ASP.NET application.
Microsoft Visual Studio 2010 Teacher: Ms. Olifer.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
1.
Microsoft Visual Basic 2010 CHAPTER TWO Program and Graphical User Interface Design.
Module 9: Using XML Web Services in a C# Application.
Microsoft Visual Basic 2008: Reloaded Third Edition Chapter One An Introduction to Visual Basic 2008.
Understand Click Once Deployment Windows Development Fundamentals LESSON 5.1B.
Install a Windows Service Application Windows Development Fundamentals LESSON 3.2.
Understand How to Create New Controls and Extend Existing Controls Windows Development Fundamentals LESSON 2.3A.
Lecture Set 2 Part A: Creating an Application with Visual Studio – Solutions, Projects, Files 8/10/ :35 PM.
Installing Microsoft C++ Microsoft Visual Studio 6.0.
Identify Windows Application Types Windows Development Fundamentals LESSON 1.1.
Debug in Visual Studio Windows Development Fundamentals LESSON 2.5A.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
COMPUTER III. Fundamental Concepts of Programming Control Structures Sequence Selection Iteration Flowchart Construction Introduction to Visual Basic.
A lesson approach © 2011 The McGraw-Hill Companies, Inc. All rights reserved. Microsoft® Excel 2013.
Create Windows Setup and Deployment Projects Windows Development Fundamentals LESSON 5.2.
Understand Databound Controls Windows Development Fundamentals LESSON 4.2A.
Understand Windows Forms Inheritance Windows Development Fundamentals LESSON 2.2.
Data-information stored in files on the disks and CDs in your computer system Why should we save a file when we create it on the computer?
Murach's C# 2012, C2© 2013, Mike Murach & Associates, Inc. Slide 1.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
Create Views Using a Graphical Designer Database Administration Fundamentals LESSON 2.3b.
An Introduction to Programming with C++1 Void Functions Tutorial 5.
 2007 Pearson Education, Inc. All rights reserved Introduction to the Visual Basic Express 2005 IDE.
An Introduction to Programming with C++1 More on the Selection Structure Tutorial 7.
Lesson 1: Learning Worksheet Fundamentals Microsoft Office Excel 2003 Lesson 1 Learning Worksheet Fundamentals.
Automation Engr. Faisal ur Rehman CE-105T Spring 2007.
Visual Studio 2010 Hello World CSC 230.
© 2016, Mike Murach & Associates, Inc.
Microsoft Visual Basic 2005 BASICS
OpenGL project setup.
Program and Graphical User Interface Design
Module 0: Introduction Chapter 2: Getting Started
Module 1: Getting Started
Program and Graphical User Interface Design
02 | Developing ASP.NET MVC 4 Models
Visual Studio 2010 Hello World CSC 230.
© 2016, Mike Murach & Associates, Inc.
1. Open Visual Studio 2008.
Double click Microsoft Visual Studio 2010 on the Computer Desktop
POS 408 Week 1 Individual Assignment Individual: Console Display Message//tutorfortune.com Click on below link to buy
Creating a Windows Application Project in Visual Studio
The visual studio window
More to Learn Viewing file details
Computer Terms Review from what language did C++ originate?
C# and ASP.NET Programming
Presentation transcript:

Create Windows-based Applications by Using Visual Studio Windows Development Fundamentals LESSON 1.3

Windows Development Fundamentals LESSON 1.3 Lesson Overview How can you use Microsoft Visual Studio ® to create and manage Windows- based applications? In this lesson, you will learn:  The structure of Visual Studio solutions  Creating solutions in Visual Studio  Using the Solution Explorer in Visual Studio

Windows Development Fundamentals LESSON 1.3 Anticipatory Set  Working from memory, list the steps necessary to create a new project in Visual Studio.

Windows Development Fundamentals LESSON 1.3 Visual Studio Solutions and Projects  A solution is a container that includes one or more related projects and the settings related to those projects.  Solution definition data is stored in two files: .sln files .suo files  A project is a container that represents one particular part of a solution.  A project includes source files, plus related metadata.  A project’s properties are managed using the Project Designer.

Windows Development Fundamentals LESSON 1.3 Solution Explorer  Provides an organized view of a solution and all its projects and files. The Solution Explorer (for a simple Microsoft Visual C# ® solution)

Windows Development Fundamentals LESSON 1.3 Follow Along: Creating a Solution An example of the New Project dialog box

Windows Development Fundamentals LESSON 1.3 Lesson Review  Explain how solutions and projects function as containers.