Microsoft Visual C# 2005: Developing Applications Table of Contents

Size: px
Start display at page:

Download "Microsoft Visual C# 2005: Developing Applications Table of Contents"

Transcription

1 Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 Sample Database...INTRO-3 Security...INTRO-4 Installation...INTRO-4 About the Authors...INTRO-5 INTRODUCTION TO WINDOWS FORMS NET Does Windows Adding Controls to a Form Investigating Snap Lines Adjusting Control Sizes and Positions Controlling Tab Order A Peek behind the Scenes Viewing the Code Adding Event Handling Code Adding a Menu to the Form Adding Non-Graphical Components The ToolTip Component The Timer Component LAB 1: INTRODUCTION TO WINDOWS FORMS Lab 1 Overview Create a Windows Application Anchor the Controls Add Event-Handling Code TAKING ADVANTAGE OF THE FORM EVENT MODEL How Visual C# Handles Events Working with Events Working with Forms Peeking under the Event Covers Exploring Form and Control Events TOC-1

2 Form Events Keyboard Events Mouse Events Control Events Validating User Input LAB 2: TAKING ADVANTAGE OF THE FORM EVENT MODEL Lab 2 Overview Creating an Event Handler Using Visual Studio Creating a Dynamic Event Handler COMMON WINDOWS FORMS CONTROLS Windows Forms Controls Label Control TextBox Control Button Control CheckBox Control RadioButton Control ComboBox Control ListBox Control CheckedListBox Control LinkLabel Control NumericUpDown Control PictureBox Control ProgressBar Control LAB 3: COMMON WINDOWS FORMS CONTROLS Lab 3 Overview Create a Simple Data Entry Form Modify the Data Entry Form Add Validation to the Data Entry Form EXCEPTION HANDLING Perspectives on Exception Handling Exception Handling in.net The Demonstration Code Getting Started with Exception Handling No Error Handling Adding a Simple Try/Catch Block Unhandled Exceptions Using an Exception Object TOC-2

3 Catching Specific Exceptions Taking Advantage of the Exception Hierarchy Raising Errors Using the Throw Keyword Exception-Handling Options Passing Error Information Running Code Unconditionally The Finally Block Cleaning Up: The Using Statement Handling Unhandled Exceptions Creating Exception Classes LAB 4: EXCEPTION HANDLING Lab 4 Overview Add Simple Exception Handling Handle Individual Exceptions Add Code Running Unconditionally WORKING WITH STRINGS AND DATES Basic.NET Data Types Working with Text: The String Class Investigating the String Class Creating Strings String Properties Static String Methods Instance String Methods Manipulating Text with the StringBuilder Class Working with Dates and Times DateTime Constructors Static Members Simple Properties Conversion Methods Calculation Methods Static Methods Using the DateTime Type Handling Elapsed Times with the TimeSpan Type Measuring Elapsed Time LAB 5: WORKING WITH STRINGS AND DATES Lab 5 Overview TOC-3

4 Work with Strings Work with the StringBuilder Class Use StopWatch and TimeSpan to Measure Elapsed Time ACCESSING DATA Overview of ADO.NET ADO.NET Classes The ADO.NET Architecture Creating ADO.NET Data Objects Connecting to Data Setting Up Connection Information Creating Connection Strings in the Configuration File Using the Connection Object Executing Commands Working with Data Readers Using the SQLDataReader Working with Data Working with Data Using a Data Adapter Managing Data with the DataSet Object Filling a DataTable within a DataSet Filling a DataTable from SQL Server Choosing an ADO.NET Provider The SQL Server.NET Data Provider The OLE DB.NET Data Provider The ODBC Data Provider Writing Code for Multiple Providers LAB 6: ACCESSING DATA Lab 6 Overview Create a Connection String in the Configuration File Use the DataReader to Fill a ListBox with Categories Use a DataSet to Fill a DataGridView with Products DATA BINDING TECHNIQUES Data Binding Basics Creating a Data Source The Data Sources Window Creating Data-Bound Forms Data Binding Components and Controls TOC-4

5 The DataSet The TableAdapter The BindingSource Component The BindingNavigator Control Displaying Data from Related Tables Displaying Data from Lookup Tables Adding Search Capabilities to a Form Filtering by Values from a Lookup Table Data Validation Determining Whether the User Made Changes Validating Data at the Form Level Validating Data at the Data Level Working with Local Data LAB 7: DATA BINDING TECHNIQUES Lab 7 Overview Create a Simple Data-Bound Form Search and Filter Based on Criteria Validate Data USING THE DATA CONTROLS Data Controls The BindingNavigator Control BindingNavigator ToolStripItems Built-In and Custom Functionality Adding a BindingNavigator Control to a Form The BindingSource Component Data Navigation Data Manipulation Sorting and Filtering Working with the Underlying Data Working with Related Data The DataGridView Control Customizing How Data is Displayed Formatting Cells at Runtime Displaying Calculated Values Displaying Images Adding Controls to a DataGridView The ReportViewer Control TOC-5

6 Creating and Viewing Reports Local and Remote Report Processing LAB 8: USING THE DATA CONTROLS Lab 8 Overview Navigation and Data Manipulation with the BindingSource Component Formatting the DataGridView Control Displaying Reports with the ReportViewer Control HANDLING INPUT/OUTPUT TASKS Introducing the System.IO Namespace Selecting Files Browsing for Folders Handling Path Information Working with Directories and Files Retrieving Information about Drives Investigating the Objects Calling Methods of the Directory Class Filling the TreeView Displaying Drive, File, and Directory Information Using Stream-Based Objects to Read and Write File Contents Reading and Writing Text Files Investigating the Code Alternate Solutions Writing to Files Using the StreamWriter LAB 9: HANDLING INPUT/OUTPUT TASKS Lab 9 Overview Browse for Files Display Selected File Information Load File Contents PROJECT SETTINGS IN VISUAL STUDIO The Project Designer Application Properties Assembly Name Root Namespace Icon Startup Object TOC-6

7 Assembly Information Compilation Properties Conditional Compilation Compiler Errors and Warnings Build Events Debugging Properties Start Action Start Options Enable Debuggers Project References Adding Project References Project Resources Project Settings LAB 10: PROJECT SETTINGS IN VISUAL STUDIO Lab 10 Overview Application Behavior and Appearance Building the Project Project Resources and Settings DEBUGGING YOUR APPLICATIONS Debugging Applications Setting Breakpoints and Stepping through Code Setting a Breakpoint Continuing Program Execution Setting Conditional Breakpoints Specifying a Breakpoint Hit Count Setting a Breakpoint on a Function Breakpoints Window Breaking on Exceptions Debugging Code in Assemblies Stepping into Code in an Assembly Stepping into Code Written in another Language Evaluating Variables and Objects DataTips and Visualizers Using the Watch Window and QuickWatch Dialog Box Using the Locals Window Using the Autos Window Using the Immediate Window TOC-7

8 Edit and Continue Tracing Applications Trace Sources Trace Switches Trace Listeners Trace Filtering Using Configuration Files to Control Tracing LAB 11: DEBUGGING YOUR APPLICATIONS Lab 11 Overview Setting Breakpoints and Stepping Through Code Evaluating Expressions and Using Edit and Continue Tracing Applications CONTAINER CONTROLS Introducing Container Controls Working with Container Controls Creating the Switchboard Form Grouping Controls with the GroupBox Control GroupBox Control Members BackgroundImage and BackColor Properties Visible, Enabled, and Font Properties Introducing the Panel Control BorderStyle Property Scrolling Features Displaying Multiple Panels with the SplitContainer Control Orientation Property IsSplitterFixed Property SplitterWidth Property SplitterDistance Property FixedPanel Property Panel1MinSize and Panel2MinSize Properties Panel1Collapsed and Panel2Collapsed Properties SplitContainer Control Events Laying out Panels with the TabControl Control Working with Tab Pages Alignment Property Appearance Property MultiLine Property SizeMode Property TOC-8

9 ShowToolTips Property Informational Properties Adding Tab Pages TabControl Events Simple Layout Using the FlowLayoutPanel Control Working with the FlowLayoutPanel Control FlowLayoutPanel Control Properties Advanced Layout Using the TableLayoutPanel Control Getting Started with the TableLayoutPanel Control Setting Row and Column Styles Positioning New Controls Adding Controls Programmatically Working with Other Properties Laying out the Columns or Rows TableLayoutPanel Control Extender Properties TableLayoutPanel Control Methods LAB 12: CONTAINER CONTROLS Lab 12 Overview Lay Out a Panel Control Use the SplitContainer Control Work with the TableLayoutPanel Control MENUS AND TOOLBARS Introducing the 'Strips Adding Menu Images Using Visual Studio s Automatic Menus The ToolStrip Control The StatusStrip Control The ContextMenuStrip Control The ToolStripContainer Control Working with a ToolStripItem ToolStripItem Display Styles Making and Saving Runtime Customizations ToolStrip Layout Issues and Overflow Working with the 'Strips RichTextBox Demo WebBrowser Demo LAB 13: MENUS AND TOOLBARS TOC-9

10 Lab 13 Overview Add the MenuStrip Add the ToolStrip Add the StatusStrip CREATING MDI APPLICATIONS MDI Applications Child Windows Creating an MDI Application MDI Parent and Child Forms MDI Parent Form MDI Child Forms Managing Open Windows Automatically Creating a Window List Manually Creating a Window List Arranging Open Windows Managing Menus Merging Menus Design Considerations Working with Open Forms Handling the mdichildactivate Event Handling Edit and Format Menu Items Passing Data between Open Forms Handling Form Closing LAB 14: CREATING MDI APPLICATIONS Lab 14 Overview Create the Parent and Child Forms Manage Menus and Open Windows Work with Open Forms COMPLEX WINDOWS FORMS CONTROLS Introducing Complex Controls NotifyIcon Control Investigating the Sample Form WebBrowser Control Investigating the Sample Form Investigating WebBrowser Navigation Displaying Dialog Boxes TOC-10

11 Reacting to Environment Changes In Summary MaskedTextBox Control Operation of the MaskedTextBox Control Reacting to the MaskInputRejected Event Status Properties In Summary RichTextBox Control Handling State Undo and Redo Working with the Clipboard Working with Fonts and Styles Formatting Text Working with Zoom, Links, and More TreeView and ListView Controls TreeView Control ListView Control Setting Up the Images Filling the List of Files Working with ListView Items Showing Items in Groups Sorting the Columns MonthCalendar and DateTimePicker Controls The MonthCalendar Control The DateTimePicker Control In Summary LAB 15: COMPLEX WINDOWS FORMS CONTROLS Lab 15 Overview Set Up the NotifyIcon Control Add the DateTimePicker Control Add a Web Browser CREATING CUSTOM CONTROLS Control Creation in Windows Forms Inheriting from an Existing Control Required Steps Creating a TextBox with Required Input Adding the Finishing Touches Inheriting Controls, In Review TOC-11

12 Drawing Your Own Custom Controls Inheriting from the Control Base Class Control Properties Drawing the Control Default Values and Serializing Properties Raising Events Hiding Properties Adding Ease-of-Use Features Drawing Your Own Controls, In Review Creating Composite Controls Required Steps The Sample Control Designer Support for Properties Handling Events Setting the Default Control Text Serializing the Text Property Data Binding Inheriting from UserControl, In Review LAB 16: CREATING CUSTOM CONTROLS Lab 16 Overview Create the DigitalClock Control Add Finishing Touches WORKING WITH TOOLBOX COMPONENTS Introducing Components Adding Components to Your Forms Timer Component Using the Timer Component BackgroundWorker Component Understanding the Code Introducing Multi-Threading with the BackgroundWorker Component FileSystemWatcher Component Working with the FileSystemWatcher Component PerformanceCounter Component Retrieving Values Using the PerformanceCounter Component Creating Performance Counters Process Component TOC-12

13 Using the Process Component Process Component Methods Start a Process and React When it s Completed Working with Processes ServiceController Component Using the ServiceController Component Interacting with Windows Services Working with Services EventLog Component Event Log Concepts Using the EventLog Component Investigating the Sample Form Working with the Server Explorer LAB 17: WORKING WITH TOOLBOX COMPONENTS Lab 17 Overview Monitor File Changes Using the FileSystemWatcher Component Keep Track of File Changes Using the EventLog Component Run an Application Using the Process Component INTEROPERABILITY Interoperability COM and.net Understanding COM Components Managed and Unmanaged Code Calling COM Objects from.net Calling a COM DLL from.net Interop Assemblies Exporting Data to Excel Calling.NET Assemblies from COM Creating COM DLLs in Visual Studio Creating Wrappers for.net Framework Classes Using Platform Invoke Using the Windows API Platform Invoke Caveats Web Services Web Service Requirements and Technologies Creating a Web Service Adding a Project Reference to a Web Service TOC-13

14 Calling a Web Service LAB 18: INTEROPERABILITY Lab 18 Overview Call a COM DLL from.net Call a COM Object from.net Call a.net Assembly from COM DEPLOYING APPLICATIONS USING CLICKONCE ClickOnce Deployment Publishing an Application Publishing an Application with the Publish Wizard Publish, Install, and Update Locations Setting Publish Options Prerequisites Additional Files Updating a Deployed Application Rolling Back an Update Setting Update Options What Happens when You Publish an Application? Examining Publish.htm and Setup.exe The Deployment Manifest The Application Manifest Application Files The ClickOnce Cache What Happens when You Publish an Update to an Application? ClickOnce and Security Setting Permissions Debugging a Partial Trust Application Changes to the Manifest Files Using the Deployment API to Manage Updates LAB 19: DEPLOYING APPLICATIONS USING CLICKONCE Lab 19 Overview Publish an Application Update an Application Debug with Reduced Permissions INDEX...INDEX-1 TOC-14

Developing Applications Using Visual Basic 2008: Volume 2

Developing Applications Using Visual Basic 2008: Volume 2 Developing Applications Using Visual Basic 2008: Volume 2 Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 Sample

More information

Learning to Program in Visual Basic 2005 Table of Contents

Learning to Program in Visual Basic 2005 Table of Contents Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 Installation...INTRO-3 Demonstration Applications...INTRO-3 About

More information

Microsoft Visual Basic 2005: Developing Applications Additional Topics

Microsoft Visual Basic 2005: Developing Applications Additional Topics Microsoft Visual Basic 2005: Developing Applications Additional Topics Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3

More information

C# Syllabus. MS.NET Framework Introduction

C# Syllabus. MS.NET Framework Introduction C# Syllabus MS.NET Framework Introduction The.NET Framework - an Overview Framework Components Framework Versions Types of Applications which can be developed using MS.NET MS.NET Base Class Library MS.NET

More information

Microsoft ASP.NET Using Visual Basic 2008: Volume 1 Table of Contents

Microsoft ASP.NET Using Visual Basic 2008: Volume 1 Table of Contents Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 Installation...INTRO-3 The Chapter Files...INTRO-3 Sample Database...INTRO-3

More information

Developing Classic Windows Forms applications using Visual Studio 2010 and.net QASMTNET4

Developing Classic Windows Forms applications using Visual Studio 2010 and.net QASMTNET4 Developing Classic Windows Forms applications using Visual Studio 2010 and.net 4.0 - QASMTNET4 Course Details Days 5 Course code QASMTNET4 Course Outline Overview With the advent of C# 4.0 and Visual Studio

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

ASP.NET Using Visual C# 2005: Additional Topics Table of Contents

ASP.NET Using Visual C# 2005: Additional Topics Table of Contents Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 Installation...INTRO-3 The Chapter Files...INTRO-3 Sample Database...INTRO-3

More information

C# 2008 and.net Programming for Electronic Engineers - Elektor - ISBN

C# 2008 and.net Programming for Electronic Engineers - Elektor - ISBN Contents Contents 5 About the Author 12 Introduction 13 Conventions used in this book 14 1 The Visual Studio C# Environment 15 1.1 Introduction 15 1.2 Obtaining the C# software 15 1.3 The Visual Studio

More information

Microsoft ASP.NET Using Visual C# 2008: Volume 2 Table of Contents

Microsoft ASP.NET Using Visual C# 2008: Volume 2 Table of Contents Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 Installation...INTRO-3 The Chapter Files...INTRO-4 Sample Database...INTRO-4

More information

Developing Microsoft.NET Applications for Windows (Visual Basic.NET)

Developing Microsoft.NET Applications for Windows (Visual Basic.NET) Developing Microsoft.NET Applications for Windows (Visual Basic.NET) Course Number: 2565 Length: 5 Day(s) Certification Exam This course will help you prepare for the following Microsoft Certified Professional

More information

Programming with ADO.NET

Programming with ADO.NET Programming with ADO.NET The Data Cycle The overall task of working with data in an application can be broken down into several top-level processes. For example, before you display data to a user on a

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

.NET FRAMEWORK. Visual C#.Net

.NET FRAMEWORK. Visual C#.Net .NET FRAMEWORK Intro to.net Platform for the.net Drawbacks of Current Trend Advantages/Disadvantages of Before.Net Features of.net.net Framework Net Framework BCL & CLR, CTS, MSIL, & Other Tools Security

More information

Vision V sion o n I n n 1975 V sion o n T o T d o a d y A c o c m o pu p t u er e o n o n e v e e v r e y E po p w o er e p e p o e p o l p e

Vision V sion o n I n n 1975 V sion o n T o T d o a d y A c o c m o pu p t u er e o n o n e v e e v r e y E po p w o er e p e p o e p o l p e Mobile Applications.. Vision Vision In 1975 A computer on every desk and in every home Vision Today Empower people through great software any time, any place, and on any device Mobility Group Empower people

More information

DOT.NET MODULE 6: SILVERLIGHT

DOT.NET MODULE 6: SILVERLIGHT UNIT 1 Introducing Silverlight DOT.NET MODULE 6: SILVERLIGHT 1. Silverlight and Visual Studio 2. Understanding Silverlight Websites 3. Creating a Stand-Alone Silverlight Project 4. Creating a Simple Silverlight

More information

ADO.NET Using Visual Basic 2005 Table of Contents

ADO.NET Using Visual Basic 2005 Table of Contents Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 The Chapter Files...INTRO-3 About the Authors...INTRO-4 ACCESSING

More information

B.V Patel Institute of Business Management, Computer & Information Technology

B.V Patel Institute of Business Management, Computer & Information Technology BCA (Semester 4 th ) 030010401: GUI Programming Teaching Schedule Objective: To provide fundamentals of.net framework, C# language and to introduce development of rich Windows form applications with event

More information

Migrate Your Skills to Microsoft.NET Framework 2.0 and 3.0 using Visual Studio 2005 (C#)

Migrate Your Skills to Microsoft.NET Framework 2.0 and 3.0 using Visual Studio 2005 (C#) Migrate Your Skills to Microsoft.NET Framework 2.0 and 3.0 using Visual Studio 2005 (C#) Course Length: 5 Days Course Overview This instructor-led course teaches developers to gain in-depth guidance on

More information

(C#) - Pro: Designing and Developing Windows Applications Using the Microsoft.NET Framework 3.5

(C#) - Pro: Designing and Developing Windows Applications Using the Microsoft.NET Framework 3.5 70-563 (C#) - Pro: Designing and Developing Windows Applications Using the Microsoft.NET Framework 3.5 Course Length: 5 Day Course Candidates for exam 70-563 work on a team in a development environment

More information

PROGRAMMING WITH THE MICROSOFT.NET FRAMEWORK USING MICROSOFT VISUAL STUDIO 2005 Course No. MS4995A 5 Day PREREQUISITES COURSE OUTLINE

PROGRAMMING WITH THE MICROSOFT.NET FRAMEWORK USING MICROSOFT VISUAL STUDIO 2005 Course No. MS4995A 5 Day PREREQUISITES COURSE OUTLINE COURSE OVERVIEW This five-day instructor-led course enables developers who are migrating from a different development language, an earlier version of Visual Basic.NET or Visual C#, or who have completed

More information

Upgrade: Transition Your MCPD Windows Developer Skills to MCPD Windows Developer 3.5 Instructor: Peter Thorsteinson (VB)

Upgrade: Transition Your MCPD Windows Developer Skills to MCPD Windows Developer 3.5 Instructor: Peter Thorsteinson (VB) 70-566 - Upgrade: Transition Your MCPD Windows Developer Skills to MCPD Windows Developer 3.5 Instructor: Peter Thorsteinson (VB) Course Introduction Course Introduction Chapter 01 - Windows Forms and

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

Introduction to Programming Microsoft.NET Framework Applications with Microsoft Visual Studio 2005 (C#)

Introduction to Programming Microsoft.NET Framework Applications with Microsoft Visual Studio 2005 (C#) Introduction to Programming Microsoft.NET Framework Applications with Microsoft Visual Studio 2005 (C#) Course Number: 4994A Length: 3 Day(s) Certification Exam There are no exams associated with this

More information

ASP.NET 2.0 p. 1.NET Framework 2.0 p. 2 ASP.NET 2.0 p. 4 New Features p. 5 Special Folders Make Integration Easier p. 5 Security p.

ASP.NET 2.0 p. 1.NET Framework 2.0 p. 2 ASP.NET 2.0 p. 4 New Features p. 5 Special Folders Make Integration Easier p. 5 Security p. Preface p. xix ASP.NET 2.0 p. 1.NET Framework 2.0 p. 2 ASP.NET 2.0 p. 4 New Features p. 5 Special Folders Make Integration Easier p. 5 Security p. 6 Personalization p. 6 Master Pages p. 6 Navigation p.

More information

Introduction to Microsoft.NET Framework Programming using VS 2005 (C#)

Introduction to Microsoft.NET Framework Programming using VS 2005 (C#) Introduction to Microsoft.NET Framework Programming using VS 2005 (C#) Course Length: 5 Days Course Overview This instructor-led course teaches introductory-level developers who are not familiar with the

More information

SECURED PROGRAMMING IN.NET DETAILED TRAINING CONTENT INDUSTRIAL TRAINING PROGRAM ( )

SECURED PROGRAMMING IN.NET DETAILED TRAINING CONTENT INDUSTRIAL TRAINING PROGRAM ( ) SECURED PROGRAMMING IN.NET DETAILED TRAINING CONTENT INDUSTRIAL TRAINING PROGRAM (2013-2014) MODULE: C# PROGRAMMING CHAPTER 1: INTRODUCING.NET AND C# 1.1 INTRODUCTION TO LANGUAGES C++ C# DIFFERENCES BETWEEN

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

Deitel Series Page How To Program Series

Deitel Series Page How To Program Series Deitel Series Page How To Program Series Android How to Program C How to Program, 7/E C++ How to Program, 9/E C++ How to Program, Late Objects Version, 7/E Java How to Program, 9/E Java How to Program,

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

DOT NET SYLLABUS FOR 6 MONTHS

DOT NET SYLLABUS FOR 6 MONTHS DOT NET SYLLABUS FOR 6 MONTHS INTRODUCTION TO.NET Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.) CLR Architecture and Services The.Net Intermediate

More information

PESIT- Bangalore South Campus Hosur Road (1km Before Electronic city) Bangalore

PESIT- Bangalore South Campus Hosur Road (1km Before Electronic city) Bangalore PESIT- Bangalore South Campus Hosur Road (1km Before Electronic city) Bangalore 560 100 Department of MCA COURSE INFORMATION SHEET Programming Using C#.NET (13MCA53) 1. GENERAL INFORMATION: Academic Year:

More information

James Foxall. Sams Teach Yourself. Visual Basic 2012 *24. Hours. sams. 800 East 96th Street, Indianapolis, Indiana, USA

James Foxall. Sams Teach Yourself. Visual Basic 2012 *24. Hours. sams. 800 East 96th Street, Indianapolis, Indiana, USA James Foxall Sams Teach Yourself Visual Basic 2012 *24 Hours sams 800 East 96th Street, Indianapolis, Indiana, 46240 USA Table of Contents Introduction 1 PART I: The Visual Basic 2012 Environment HOUR

More information

10/18/2010 ' ( )* +, ('')* +, !" #$ % !""#$

10/18/2010 ' ( )* +, ('')* +, ! #$ % !#$ !""#$ % & ' ( )* +, ('')* +,!" #$ %! 1 !"! "# $%" " &"# $& ' (&) * +,*-& ",*- - (. 2 ( / ( 0 3 %)" 1!)" # 4 !)" 2 ( %" 5 -)" (% %% ( %! 6 ( %- ( %. 7 ( %/ ( %0 8 ( %1 ( - Allows access to physical hardware

More information

6 Months Training Module in.net Module 1-Total Days-20

6 Months Training Module in.net Module 1-Total Days-20 6 Months Training Module in.net Visual Studio Version: 2008.net Framework: 3.5 Database: SQL Server 2005 Module 1-Total Days-20 Introduction to.net framework: History of.net.net framework.net version Features/advantages

More information

Chapters and Appendix F are PDF documents posted online at the book s Companion Website (located at

Chapters and Appendix F are PDF documents posted online at the book s Companion Website (located at Contents Chapters 16 27 and Appendix F are PDF documents posted online at the book s Companion Website (located at www.pearsonhighered.com/deitel/). Preface Before You Begin xix xxix 1 Introduction to

More information

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio Introduction XXV Part I: C# Fundamentals 1 Chapter 1: The.NET Framework 3 What s the.net Framework? 3 Common Language Runtime 3.NET Framework Class Library 4 Assemblies and the Microsoft Intermediate Language

More information

Chapters are PDF documents posted online at the book s Companion Website (located at

Chapters are PDF documents posted online at the book s Companion Website (located at vbhtp6printonlytoc.fm Page ix Wednesday, February 27, 2013 11:59 AM Chapters 16 31 are PDF documents posted online at the book s Companion Website (located at www.pearsonhighered.com/deitel/). Preface

More information

Using Visual Basic Studio 2008

Using Visual Basic Studio 2008 Using Visual Basic Studio 2008 Recall that object-oriented programming language is a programming language that allows the programmer to use objects to accomplish a program s goal. An object is anything

More information

Beginning Silverlight 5 in C #

Beginning Silverlight 5 in C # Table of Contents: Chapter 1. Welcome to Silverlight 5 1.1 The Evolution of the User interface 1.2 Rich Internet Application Solutions 1.3 What is Silverlight? 1.4 Benefits of Silverlight 1.4.1 Cross-Platform/Cross-Browser

More information

Index. B base classes creating, , 389 inheriting, inheriting in new classes, 390

Index. B base classes creating, , 389 inheriting, inheriting in new classes, 390 Index Symbols & (string concatenation (combination) operator), 70, 135 function of, 174 * (multiplication operator), 135 + (addition operator), 135 / (division operator), 135 = (assignment (equal to) operator),

More information

Introduction to using Visual Studio 2010 to build data-aware applications

Introduction to using Visual Studio 2010 to build data-aware applications CT5805701 Software Engineering in Construction Information System Dept. of Construction Engineering, Taiwan Tech Introduction to using Visual Studio 2010 to build data-aware applications Yo Ming Hsieh

More information

Chapter 3. Windows Database Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill

Chapter 3. Windows Database Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Chapter 3 Windows Database Applications McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Objectives - 1 Retrieve and display data from a SQL Server database on Windows forms Use the

More information

Dive Into Visual C# 2008 Express

Dive Into Visual C# 2008 Express 1 2 2 Dive Into Visual C# 2008 Express OBJECTIVES In this chapter you will learn: The basics of the Visual Studio Integrated Development Environment (IDE) that assists you in writing, running and debugging

More information

Ingegneria del Software T. Interfaccia utente

Ingegneria del Software T. Interfaccia utente Interfaccia utente Creating Windows Applications Typical windows-application design & development 1+ classes derived from System.Windows.Forms.Form Design UI with VisualStudio.NET Possible to do anything

More information

About the Authors Introduction p. 1 Exploring Application Architectures p. 9 Introduction p. 9 Choosing the "Right" Architecture p.

About the Authors Introduction p. 1 Exploring Application Architectures p. 9 Introduction p. 9 Choosing the Right Architecture p. Foreword p. xxi Acknowledgments p. xxiii About the Authors p. xxv Introduction p. 1 Exploring Application Architectures p. 9 Introduction p. 9 Choosing the "Right" Architecture p. 10 Understanding Your

More information

Creating custom reports is for advanced users only. It is the sole responsibility of the user to debug any custom reports.

Creating custom reports is for advanced users only. It is the sole responsibility of the user to debug any custom reports. SI5 User and Administration Guide 527 Report Designer Pro users have the ability to create custom reports using the Report Designer. To open the report designer interface, go to Tools > Report Designer

More information

Contents. Illustrations. 1 Introduction to Computers, the Internet, the Web and C# 1

Contents. Illustrations. 1 Introduction to Computers, the Internet, the Web and C# 1 csphtp1toc.fm Page viii Friday, December 14, 2001 1:49 PM Illustrations Preface viii xix xxxviii 1 Introduction to Computers, the Internet, the Web and C# 1 1.1 Introduction 2 1.2 What Is a Computer? 3

More information

Table Of Contents VISUAL BAISC 2005 FOR BEGINNERS

Table Of Contents VISUAL BAISC 2005 FOR BEGINNERS Table Of Contents SECTION I: REVOLUTION AND DESIGN ENVIRONMENT OF VISUAL BASIC 2005 1. INTRODUCTION TO MICROSOFT VISUAL STUDIO 2005... 1 HISTORY OF MICROSOFT VISUAL STUDIO... 1 Visual Studio 97... 1 Visual

More information

.NET-6Weeks Project Based Training

.NET-6Weeks Project Based Training .NET-6Weeks Project Based Training Core Topics 1. C# 2. MS.Net 3. ASP.NET 4. 1 Project MS.NET MS.NET Framework The.NET Framework - an Overview Architecture of.net Framework Types of Applications which

More information

Coding Faster: Getting More Productive with Microsoft Visual

Coding Faster: Getting More Productive with Microsoft Visual Microsoft Coding Faster: Getting More Productive with Microsoft Visual Studio Covers Microsoft Visual Studio 2005, 2008, and 2010 Zain Naboulsi Sara Ford Table of Contents Foreword Introduction xxiii xxvii

More information

Exercises for Delphi Advanced Programming Technology (English Version)

Exercises for Delphi Advanced Programming Technology (English Version) Exercises for Delphi Advanced Programming Technology (English Version) School: School of Information Engineering Department: Department of Electronic and Information Engineering Author: Sun Zhaoyun Exercises

More information

Cowley College & Area Vocational Technical School

Cowley College & Area Vocational Technical School Cowley College & Area Vocational Technical School COURSE PROCEDURE FOR C++ PROGRAMMING CIS1862 3 Credit Hours Student Level: This course is open to students on the college level in either freshman or sophomore

More information

Windows Presentation Foundation for.net Developers

Windows Presentation Foundation for.net Developers Telephone: 0208 942 5724 Email: info@aspecttraining.co.uk YOUR COURSE, YOUR WAY - MORE EFFECTIVE IT TRAINING Windows Presentation Foundation for.net Developers Duration: 5 days Overview: Aspect Training's

More information

M. K. Institute Of Computer Studies, Bharuch SYBCA SEM IV VB.NET (Question Bank)

M. K. Institute Of Computer Studies, Bharuch SYBCA SEM IV VB.NET (Question Bank) Unit-1 (overview of Microsoft.net framework) 1. What is CLR? What is its use? (2 times) 2 2. What is garbage collection? 2 3. Explain MSIL 2 4. Explain CTS in detail 2 5. List the extension of files available

More information

C# Programming: From Problem Analysis to Program Design. Fourth Edition

C# Programming: From Problem Analysis to Program Design. Fourth Edition C# Programming: From Problem Analysis to Program Design Fourth Edition Preface xxi INTRODUCTION TO COMPUTING AND PROGRAMMING 1 History of Computers 2 System and Application Software 4 System Software 4

More information

Before You Begin. and Visual Basic 1

Before You Begin. and Visual Basic 1 Contents Preface Before You Begin xxiii xli 1 Introduction to Computers, the Internet and Visual Basic 1 1.1 Introduction 2 1.2 What Is a Computer? 3 1.3 Computer Organization 3 1.4 Early Operating Systems

More information

VB.NET Web : Phone : INTRODUCTION TO NET FRAME WORK

VB.NET Web : Phone : INTRODUCTION TO NET FRAME WORK Web :- Email :- info@aceit.in Phone :- +91 801 803 3055 VB.NET INTRODUCTION TO NET FRAME WORK Basic package for net frame work Structure and basic implementation Advantages Compare with other object oriented

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introducing Visual Basic 8 Installing Visual Studio 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects

More information

Apex TG India Pvt. Ltd.

Apex TG India Pvt. Ltd. (Core C# Programming Constructs) Introduction of.net Framework 4.5 FEATURES OF DOTNET 4.5 CLR,CLS,CTS, MSIL COMPILER WITH TYPES ASSEMBLY WITH TYPES Basic Concepts DECISION CONSTRUCTS LOOPING SWITCH OPERATOR

More information

Lecture 5 COMMON CONTROLS

Lecture 5 COMMON CONTROLS Lecture 5 COMMON CONTROLS 1. The ListBox Class Represents a box that contains a list of items. The following are its some of its more important properties: MultiColumn This is a Boolean that indicates

More information

ASP.NET Web Forms Programming Using Visual Basic.NET

ASP.NET Web Forms Programming Using Visual Basic.NET ASP.NET Web Forms Programming Using Visual Basic.NET Duration: 35 hours Price: $750 Delivery Option: Attend training via an on-demand, self-paced platform paired with personal instructor facilitation.

More information

Index. AutoNumber data types, 154 6, 168 and Number data type, 181 AutoPostBack Property, 505, 511, 513 5, 527 8, AVG, 242, 247 8

Index. AutoNumber data types, 154 6, 168 and Number data type, 181 AutoPostBack Property, 505, 511, 513 5, 527 8, AVG, 242, 247 8 Index A Access queries, 10, 146, 191, 212, 220, 426 7 query design view, 403 types, 190, 236 table design, 141 tables, 10, 133, 136, 150, 426 Access Data Object, 136 7, 148 Access database, 136 8 table,

More information

DOT NET Syllabus (6 Months)

DOT NET Syllabus (6 Months) DOT NET Syllabus (6 Months) THE COMMON LANGUAGE RUNTIME (C.L.R.) CLR Architecture and Services The.Net Intermediate Language (IL) Just- In- Time Compilation and CLS Disassembling.Net Application to IL

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

10262A VB: Developing Windows Applications with Microsoft Visual Studio 2010

10262A VB: Developing Windows Applications with Microsoft Visual Studio 2010 10262A VB: Developing Windows Applications with Microsoft Visual Studio 2010 Course Number: 10262A Course Length: 5 Days Course Overview In this course, experienced developers who know the basics of Windows

More information

B. V. Patel Institute of Business Management, Computer & Information Technology, UTU

B. V. Patel Institute of Business Management, Computer & Information Technology, UTU BCA (Semester IV) 03010401: GUI Programming Teaching Schedule Objectives: To provide fundamentals of.net framework, VB.NET language and to introduce development of rich windows form applications with event

More information

CSC 330 Object-Oriented

CSC 330 Object-Oriented CSC 330 Object-Oriented Oriented Programming Using ADO.NET and C# CSC 330 Object-Oriented Design 1 Implementation CSC 330 Object-Oriented Design 2 Lecture Objectives Use database terminology correctly

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introduction 8 Installing Visual Basic 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects 20 Reopening

More information

Road Map for Essential Studio 2011 Volume 4

Road Map for Essential Studio 2011 Volume 4 Road Map for Essential Studio 2011 Volume 4 Essential Studio User Interface Edition... 4 ASP.NET...4 Essential Tools for ASP.NET... 4 Essential Chart for ASP.NET... 4 Essential Diagram for ASP.NET... 4

More information

Chapter 10. Database Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill

Chapter 10. Database Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Chapter 10 Database Applications McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Chapter Objectives Use database terminology correctly Create Windows and Web projects that display

More information

Beginning ASP.NET. 4.5 in C# Matthew MacDonald

Beginning ASP.NET. 4.5 in C# Matthew MacDonald Beginning ASP.NET 4.5 in C# Matthew MacDonald Contents About the Author About the Technical Reviewers Acknowledgments Introduction xxvii xxix xxxi xxxiii UPart 1: Introducing.NET. 1 & Chapter 1: The Big

More information

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming Introduction to the Visual Studio.NET Integrated Development Environment IDE CSC 211 Intermediate Programming Visual Studio.NET Integrated Development Environment (IDE) The Start Page(Fig. 1) Helpful links

More information

Developing Microsoft.NET Applications for Windows (Visual Basic.NET)

Developing Microsoft.NET Applications for Windows (Visual Basic.NET) Developing Microsoft.NET Applications for Windows (Visual Basic.NET) Course Number: 2555 Length: 1 Day(s) Certification Exam This course will help you prepare for the following Microsoft Certified Professional

More information

Developing Microsoft.NET Applications for Windows (Visual C#.NET)

Developing Microsoft.NET Applications for Windows (Visual C#.NET) Developing Microsoft.NET Applications for Windows (Visual C#.NET) Key Data Course #: 2555 Number of Days: 5 Format: Instructor-Led Certification Exams: TBD This course helps you prepare for the following

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

M. K. Institute Of Computer Studies, Bharuch SYBCA SEM IV VB.NET (Question Bank)

M. K. Institute Of Computer Studies, Bharuch SYBCA SEM IV VB.NET (Question Bank) Unit-1 (overview of Microsoft.net framework) 1. What is CLR? What is its use? (2 times) 2 2. What is garbage collection? 2 3. Explain MSIL (mar/apr-201) 2 times 2 4. Explain CTS in detail 2 5. List the

More information

B.V Patel Institute of BMC & IT, UTU

B.V Patel Institute of BMC & IT, UTU Corse Code and Corse Name: 030010401-GUI Programming Unit 1. Introduction to.net Framework Short Questions 1. What is.net Framework? 2. What is VB.NET? 3. Which are the main components of.net Framework?

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

Quick Reference Card Business Objects Toolbar Design Mode

Quick Reference Card Business Objects Toolbar Design Mode Icon Description Open in a new window Pin/Unpin this tab Close this tab File Toolbar New create a new document Open Open a document Select a Folder Select a Document Select Open Save Click the button to

More information

Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE

Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE 1 Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE Outline 2.1 Test-Driving the Welcome Application 2.2 Overview of the Visual Studio.NET 2003 IDE 2.3 Creating a Project for the

More information

SQL Server 2005: Reporting Services

SQL Server 2005: Reporting Services SQL Server 2005: Reporting Services Table of Contents SQL Server 2005: Reporting Services...3 Lab Setup...4 Exercise 1 Creating a Report Using the Wizard...5 Exercise 2 Creating a List Report...7 Exercise

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

Introduction to Web Development with Microsoft Visual Studio 2010

Introduction to Web Development with Microsoft Visual Studio 2010 Introduction to Web Development with Microsoft Visual Studio 2010 Course 10267; 5 Days, Instructor-led Course Description This five-day instructor-led course provides knowledge and skills on developing

More information

INTRODUCTION TO.NET. Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.)

INTRODUCTION TO.NET. Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.) INTRODUCTION TO.NET Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.) CLR Architecture and Services The.Net Intermediate Language (IL) Just- In-

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

Windows Presentation Foundation Programming Using C#

Windows Presentation Foundation Programming Using C# Windows Presentation Foundation Programming Using C# Duration: 35 hours Price: $750 Delivery Option: Attend training via an on-demand, self-paced platform paired with personal instructor facilitation.

More information

Team Developer 6.1. Configure the color-coding in the Tools Preferences dialog under the Outline tab.

Team Developer 6.1. Configure the color-coding in the Tools Preferences dialog under the Outline tab. Team Developer New Features : Team Developer 6.1 IDE Features: Team Developer 6.1 Color-coded Source Code The source code in the IDE is now color-coded. You can customize the colors of each of the following

More information

This module reviews the core syntax and features of the C# programming language. It also provides an introduction to the Visual Studio 2012 debugger.

This module reviews the core syntax and features of the C# programming language. It also provides an introduction to the Visual Studio 2012 debugger. Course Outline Module 1: Review of C# Syntax This module reviews the core syntax and features of the C# programming language. It also provides an introduction to the Visual Studio 2012 debugger. Overview

More information

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 Course Overview This instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual

More information

ADO.NET 2.0. database programming with

ADO.NET 2.0. database programming with TRAINING & REFERENCE murach s ADO.NET 2.0 database programming with (Chapter 3) VB 2005 Thanks for downloading this chapter from Murach s ADO.NET 2.0 Database Programming with VB 2005. We hope it will

More information

How to use data sources with databases (part 1)

How to use data sources with databases (part 1) Chapter 14 How to use data sources with databases (part 1) 423 14 How to use data sources with databases (part 1) Visual Studio 2005 makes it easier than ever to generate Windows forms that work with data

More information

DE Introduction to Web Development with Microsoft Visual Studio 2010

DE Introduction to Web Development with Microsoft Visual Studio 2010 DE-10267 Introduction to Web Development with Microsoft Visual Studio 2010 Summary Duration 5 Days Audience Developers Level 100 Technology Microsoft Visual Studio 2010 Delivery Method Instructor-led (Classroom)

More information

Dot Net Framework 4.0: Advanced Microsoft C#.NET Web Development

Dot Net Framework 4.0: Advanced Microsoft C#.NET Web Development Dot Net Framework 4.0: Advanced Microsoft C#.NET Web Development Duration: 90 Hours What you will learn This course is your first step towards success as a Dot Net professional, designed to give you a

More information

Microsoft Official Courseware Course Introduction to Web Development with Microsoft Visual Studio

Microsoft Official Courseware Course Introduction to Web Development with Microsoft Visual Studio Course Overview: This five-day instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual Studio 2010. Prerequisites Before attending this course, students

More information

CHAPTER 1: INTRODUCTION TO THE IDE 3

CHAPTER 1: INTRODUCTION TO THE IDE 3 INTRODUCTION xxvii PART I: IDE CHAPTER 1: INTRODUCTION TO THE IDE 3 Introducing the IDE 3 Different IDE Appearances 4 IDE Configurations 5 Projects and Solutions 6 Starting the IDE 6 Creating a Project

More information

- Release Notes - Version: Last Change: AIS Automation Dresden GmbH

- Release Notes - Version: Last Change: AIS Automation Dresden GmbH - Release Notes - Version: 5.0.1.0 Last Change: 2010-11-10 AIS Automation Dresden GmbH Copyright 2010 AIS Automation Dresden GmbH. All rights reserved. Reproduction of the contents in whole or in part

More information

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21 Introduction xxix Chapter 1: Welcome to SQL Server Integration Services 1 SQL Server SSIS Historical Overview 2 What s New in SSIS 2 Getting Started 3 Import and Export Wizard 3 The Business Intelligence

More information

.Net Interview Questions

.Net Interview Questions .Net Interview Questions 1.What is.net? NET is an integral part of many applications running on Windows and provides common functionality for those applications to run. This download is for people who

More information

Programming in C# Project 1:

Programming in C# Project 1: Programming in C# Project 1: Set the text in the Form s title bar. Change the Form s background color. Place a Label control on the Form. Display text in a Label control. Place a PictureBox control on

More information