1. Trang chủ
  2. » Khoa Học Tự Nhiên

Desktop applications with microsoft visual c++ 6 0 MCSD training kit 1999

1,1K 195 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 1.123
Dung lượng 8,19 MB

Các công cụ chuyển đổi và chỉnh sửa cho tài liệu này

Nội dung

ActiveX, Developer Studio, FoxPro, IntelliSense, JScript, Microsoft, Microsoft Press, MSDN, MS-DOS, Natural, SourceSafe, VisualBasic, Visual C++, Visual InterDev, Visual J++, Visual Sour

Trang 1

Copyright© 1999 by Microsoft Corporation

Trang 2

Desktop Applications with Microsoft Visual C++ 6.0 : MCSDTraining Kit

program language) 4 Microsoft Visual C++ I Microsoft Corporation

Microsoft Press books are available through booksellers and

Trang 3

international editions, contact your local Microsoft Corporationoffice or contact Microsoft Press International directly at fax(425) 936-7329 Visit our Web site at mspress.microsoft.com

NT is a trademark of Northern Telecom Limited ActiveX,

Developer Studio, FoxPro, IntelliSense, JScript, Microsoft,

Microsoft Press, MSDN, MS-DOS, Natural, SourceSafe, VisualBasic, Visual C++, Visual InterDev, Visual J++, Visual

SourceSafe, Visual Studio, Win32, Windows, Windows NT, andWingdings are either registered trademarks or trademarks ofMicrosoft Corporation in the United States and/or other

countries Other product and company names mentioned hereinmay be the trademarks of their respective owners

The example companies, organizations, products, people, andevents depicted herein are fictitious No association with anyreal company, organization, product, person, or event is

intended or should be inferred

Acquisitions Editor: Eric Stroo

Project Editor: Victoria Thulman

Trang 4

Welcome to Desktop Applications with Microsoft Visual C++ 6.0

MCSD Training Kit By completing the chapters and associated

Lab exercises in this course, you will acquire the knowledge andskills necessary to develop solutions using Visual C++ 6.0

This book addresses the objectives of the Microsoft Certified

Solution Developer (MCSD) Exam 70-016, "Designing and

Implementing Desktop Applications with Microsoft Visual C++ 6.0." This book provides content that supports the skills

measured by the 70-016 exam Review questions at the end ofeach chapter test your knowledge of the chapter material, andhelp you prepare for the exam

NOTE

For more information on becoming a Microsoft CertifiedSolution Developer, see "Microsoft Certified ProfessionalProgram" later in this section

Trang 5

This course is designed for individuals interested in developingtheir skills in Microsoft Visual C++ 6.0 while developing desktopapplications Topics include using the Microsoft Solutions

Framework (MSF); building applications with the Microsoft

Foundation Classes (MFC); creating user interfaces;

implementing application behaviors; and working with

persistent data Also included are adding database support toapplications; creating Component Object Model (COM)

components and ActiveX controls; using MFC and the ActiveTemplate Library (ATL); Internet programming; error handling,debugging, and testing; and application deployment

Trang 6

This book assumes that you have a good working knowledge ofC++ application development and are acquainted with but notknowledgeable about Microsoft Visual C++ 6.0 and the

Microsoft Windows Application Programming Interface (API).Before beginning this self-paced course, you should have:

A thorough working knowledge of the C++ language asdescribed by the ANSI standard, including language

features such as templates and exception handling

A good understanding of the principles of object-orientedsoftware development

A good basic understanding of the operation of a Windowsapplication, and the features of the Windows user interface

Trang 7

This course combines text, graphics, and review questions toteach you about designing and implementing desktop

applications with Visual C++ 6.0 The course assumes that youwill work through the book from beginning to end However, youcan choose a customized track and complete only the sectionsthat interest you If you choose to customize your course, seethe "Before You Begin" section in each chapter for importantinformation regarding prerequisites

The book is divided into the following chapters:

Chapter 1, Preparing for Application Development In

this chapter, you will learn about the elements of designing

a Visual C++ application using MSF design concepts Youwill study the issues that you should consider in planningyour design You will also be given an overview of the

Visual C++ development tools through a description of theinstallation options

Chapter 2, Visual C++ Development Environment This

chapter discusses the development environment and thetools that enable you to create applications using Visual

C++ You will use the MFC AppWizard to generate a

development project, which contains source code and

resource files that you can compile into a working

executable program You will explore features of the VisualC++ development environment and learn how to configureoptions for your project You will also learn how to use

Microsoft Visual SourceSafe to manage source code controlfor a software development team

Chapter 3, Building Applications with the Microsoft

Foundation Classes In this chapter, you will learn about

specific MFC classes and their role in Windows applicationdevelopment You will learn how the MFC framework

Trang 8

processing, display, and storage of the application's data

Chapter 4, Creating the User Interface This chapter

explores some of the elements of a typical Windows

application user interface You will edit application menusand toolbars, and add code to handle user selections Youwill update the interface to communicate information to theuser You will also learn how dialog boxes are used in anapplication, and you will use the dialog editor to create adialog box template

Chapter 5, Implementing Application Behaviors This

chapter discusses some of the MFC programming

techniques that you can use to implement the operationalbehavior of an application You will learn how to make use

of dialog box classes, and also how to take advantage of themultithreading capabilities of the Win32 platform You willlearn more about the techniques used to display applicationdata to an on-screen window or a printer You will also

Chapter 7, Adding Database Support In this chapter,

you will learn about a variety of data access interfaces

available to Visual C++ application developers These

interfaces include features of MFC that provide support fordata access and ActiveX Data Objects (ADO), Microsoft'sstandard interface to essentially all forms of external data

Trang 9

This chapter provides a conceptual introduction to COM.COM is a binary standard that defines a way for softwareobjects, developed in different languages or operating ondifferent platforms, to communicate with each other andwith other applications Also included in this introductionare ActiveX controls ActiveX controls are COM componentsdesigned for placement in an ActiveX control container, such

as an application dialog box or a Web page, to perform aself-contained function

Chapter 9, Creating COM Components In this chapter,

you will create a simple COM component using the ActiveXTemplate Library (ATL) You will review aspects of the

source code generated for your COM object by the ATL

wizards, and learn about other approaches to generatingCOM components

Chapter 10, COM Clients This chapter explains how

applications and components can act as clients of COM

server components by making use of the services that thecomponent provides You will learn how the Visual C++

compiler simplifies the creation of COM client code You willalso learntechniques for creating COM objects that containinstances of other COM objects

Chapter 11, Creating ActiveX Controls In this chapter,

you will create a simple ActiveX control using MFC, and

analyze the MFC-generated code You will then develop thesame control using the ActiveX Template Library (ATL) Youwill thus be able to compare the two development methodsand assess which method might be most appropriate in aparticular development scenario

Chapter 12, Internet Programming This chapter

introduces some of the features of Visual C++ 6.0 that

allow you to create Internet-based applications You willlearn how you can use Dynamic HTML to create application

Trang 10

capabilities to your applications and components You willstudy how to develop an application that creates ActiveXdocuments—documents that can be hosted by MicrosoftInternet Explorer for viewing and editing over the Web Youwill also learn how to create Internet Server API (ISAPI)DLLs that enhance the services provided by Microsoft Webservers

Chapter 13, Error Handling, Debugging, and Testing

In this chapter, you will learn about the three steps thatmake up the second half of the software development

process: error handling, debugging, and testing These finalsteps are an essential part of the development process, andmerit at least as much attention as that given to the

components, and how the Microsoft Zero Administration forWindows (ZAW) initiative will affect program installation inthe future

Trang 11

The Appendix, "Review Questions and Answers," contains all

Names of files and folders might appear in Title Caps

Unless otherwise indicated, you can use all lowercase letterswhen you type a file or folder name in a dialog box or at acommand prompt

File name extensions appear in all lowercase

Trang 12

type represents code samples, examples ofscreen text, or entries that you might type at a commandprompt or in initialization files

Square brackets [ ] are used in syntax statements to

enclose optional items For example, [filename] in

command syntax indicates that you can choose to type afile name with the command Type only the information

within the brackets, not the brackets themselves

Keyboard Conventions

A plus sign (+) between two key names means that youmust press those keys at the same time For example,

"Press ALT+TAB" means that you hold down ALT while youpress TAB

A comma (,) between two or more key names means thatyou must press each of the keys consecutively, not

together For example, "Press ALT, F, X" means that youpress and release each key in sequence As another

example, "Press ALT+W, L" means that you first press ALTand W together, and then release them and press L

You can choose menu commands with the keyboard Pressthe ALT key to activate the menu bar, and then sequentiallypress the keys that correspond to the highlighted or

underlined letter of the menu name and the command

name For some commands, you can also press a key

combination listed in the menu

You can select or clear check boxes or option buttons indialog boxes with the keyboard Press the ALT key, and thenpress the key that corresponds to the underlined letter ofthe option name Alternately, you can press TAB until the

Trang 13

or clear the check box or option button

You can cancel the display of a dialog box by pressing theESC key

About the Companion CD

The companion CD contains sample exam questions and thefiles used in the hands-on labs and procedures in the text

Using the Lab Files

The companion CD contains files required to perform the hands-on lab exercises To copy the lab files to your hard drive, runthe Setup.exe program in the root directory of the CD and

follow the instructions that appear on your screen

By default, the lab files are copied to the \DAVC folder Eachchapter in the book has its own subfolder (For example,

material relating to Chapter 1 can be found in

\DAVC\Chapter1.) Each of these folders might contain the

following subfolders:

The \Code folder contains source files and code snippetsthat you can use as you complete the labs or exercises inthe lessons These files are referenced at the top of the

code listing The icon shown above identifies the sections ofcode contained on the CD You can cut and paste these files

to save yourself some typing (Be sure to exclude the

labels.)

The \Data folder contains other data files that you will use

in the course of developing and testing the lab exercises

Trang 14

in the lessons

The \Lab folder contains project files for the labs that

appear at the end of each chapter Most \Lab folders willhave the following subfolders:

The \Partial folder contains the application as it looks atthe beginning of each lab

The \Solution folder contains a completed version of thelab solution This project has had each step applied andcan be used to review the completed lab

The recommended procedure is to follow the labs in numericalorder Save your work and use it in the next lab to continuedeveloping the example application If you do not complete alab, you can start the next lab using the project in the

Self Test Software Visual C++ 6.0 Sample Exam

To practice taking a certification exam, you can install the

sample exam from Self Test Software (STS) contained on thecompanion CD Designed in accordance with the actual

Microsoft certification exam, this sample includes questions tohelp you assess your understanding of the materials presented

in this book Each question includes feedback with an

associated course reference so that you can review the material

Trang 15

The Self Test Software demonstration for Exam 70-016 is

located in the \Exam folder To install the sample exam on yourhard drive, run the Mp016.exe program in this folder and followthe instructions that appear on your screen

Trang 16

To complete the exercises in this book, your computer mustmeet the following hardware and software requirements

Hardware Requirements

All hardware should be on the Microsoft Windows HardwareCompatibility List located at www.microsoft.com/hcl

Computer/Processor Personal computer with a

megahertz (MHz) or higherprocessor recommended

Microsoft Windows 95 or later (32

MB recommended); 32 MB forMicrosoft Windows NT 4.0 (64 MBrecommended)

Hard Disk Space Visual C++: 300 MB typical; 360

MB maximumMicrosoft Developer

Network (MSDN)

57 MB typical; 493 MB maximum

Internet Explorer (IE) 43 MB typical; 59 MB maximumWindows NT 4.0 Option

Pack

40 MB for Windows 95 or later;

200 MB for Windows NT 4.0SQL Server 7.0 170 MB typical; 266 MB

maximum

Display VGA or higher-resolution

monitor; Super VGArecommended

Trang 17

Operating System Windows 95; Microsoft Windows

98; Windows NT Workstation 4.0with Service Pack 4 or later;

Windows NT Server 4.0 withService Pack 4 or later

Peripheral/Miscellaneous Microsoft Mouse or compatible

pointing device

Software Requirements

The following software is required to complete the exercises inthis course:

Visual C++ 6.0, Professional or Enterprise Edition

Visual SourceSafe

Windows NT 4.0 Option Pack including Microsoft InternetInformation Server or Microsoft Personal Web Server

SQL Server 7.0 (trial version included with this courseware)Internet Explorer 4.01 with Service Pack 2 or higher

Installation Instructions

These instructions describe how to install the software you need

to complete the exercises and labs in this book, including thefollowing:

Trang 19

To install and configure the Windows NT 4.0 Option Pack including IIS on Windows NT Server 4.0

1 Download and run the Setup.exe file Because you haveService Pack 4 or greater installed, the following messageappears: "Setup detected that Windows NT 4.0 SP4 or

greater is installed on your machine We haven't tested this

product on SP4 Do you wish to proceed?" Click Yes If the message appears again, click Yes again.

www.microsoft.com/windows/ie/pws/default.htm.

Trang 20

To install all the components of the Personal Web Server,networking and the TCP/IP protocol must be installed

To install and configure Personal Web Server on

Windows NT Workstation 4.0

1 Download and run the Setup.exe file Because you haveService Pack 4 or greater installed, the following messageappears: "Setup detected that Windows NT 4.0 SP4 or

greater is installed on your machine We haven't tested this

product on SP4 Do you wish to proceed?" Click Yes If the message appears again, click Yes again.

Trang 22

8 Choose Typical as the Setup Type, set the Destination

Folder for Program Files and Data Files to c:\mssql7,

accept the defaults, and click Next.

9 In the Services Accounts window, choose Use the same account for each service Choose Use the Local System account for Service Settings Click Next.

Trang 23

6 Click Yes to agree with the terms of the license agreement.

7 Complete the User Information with your name (required)and company information (optional)

8 Choose Typical as the Setup Type, set the Destination

Folder for Program Files and Data Files to c:\mssql7,

accept the defaults, and click Next.

9 In the Services Accounts window, choose Use the same account for each service Choose Use the Local System account for Service Settings and click Next.

Trang 24

SQL Server 7.0 Database Configuration for All Operating Systems

4 Verify that the Stocks database was created, by opening the

Databases object and viewing the Stocks database.

To create the Pricehistory table in the Stocks database

1 On the Tools menu of the SQL Enterprise Manager, choose SQL Server Query Analyzer.

Trang 25

successfully."

3 Minimize the SQL Server Query Analyzer

To import data into the Pricehistory table in the Stocks database

1 Using the Enterprise Manager, expand SQL Server(s) up toand including the local computer name

2 Expand the Databases object and click the Stocks

database On the right side of the screen, choose Import Data.

3 When the DTS Import Wizard opens, click Next.

4 From the Sources drop-down list, choose Text file In the File name box, type the path for the PHImportData.txt file

that was installed from the companion CD to the \Database

folder, and click Next.

5 In the Select file format window, check that Delimited is chosen, accept all defaults, and click Next.

6 Verify that Comma is chosen as the Column Delimiter and click Next.

7 In the Destination drop-down box, verify that Microsoft OLE DB Provider for SQL Server is selected In the

Server box, check that your local server name is displayed Choose Use SQL Server authentication, type sa as the username, and leave the password blank Choose Stocks

as the Database and click Next.

8 In the Select Source Tables dialog box, change

Destination table to [stocks].[dbo].[pricehistory], and click Next.

Trang 26

9 Ensure that the Run immediately check box is selected and click Next.

13 Open the SQL Server Query Analyzer and click the New Query button on the toolbar Type the following command: select * from pricehistory.

14 Press F5 to execute the script, or click the Execute Query

button on the toolbar of the SQL Server Query Analyzer.The data from the table appears in the results window

Trang 27

Where to Find Specific Skills in This Book

The following tables provide lists of the skills measured on theMicrosoft Certified Solution Developer (MCSD) Exam 70-016and where in this book you will find information relating to eachskill

NOTE

Exam skills are subject to change without notice and atthe sole discretion of Microsoft

Deriving the Physical Design

in book

Explain the elements of an application that is based on theMFC framework

Choose whether to use an MFC regular DLL or

an MFC extension DLL

Chapter

3, Lesson1

Trang 28

Describe the Document/View architecture Chapter

3, Lesson4

Explain the MFC drawing, printing, and print

preview architecture

Chapter

3, Lesson4

Explain how the MFC architecture supports

multithreading

Chapter

5, Lesson3

Identify which type of library to use Valid

libraries include MFC, ATL, and the SDK

Chapter7

Identify which type of object to use Valid

object types include ADO, ODBC, and RDO

Chapter

7, Lesson1

Design the properties, methods, and events of

components

Chapter

9, Lesson1

Trang 30

interface control

Chapter 11, Lab11

Trang 33

2, 3

7, Lesson2

Testing and Debugging the Solution

Trang 34

debugger

Chapter13,

Lesson 4

List and describe the MFC macros that are

used to debug applications

Chapter13,

Lesson 3

Identify and describe the elements of a test plan Elementsinclude beta testing, regression testing, unit testing,

Trang 35

Plan disk-based deployment or CD-based

deployment for an application

Chapter14,

Lesson 2

Evaluate Zero Administration for Windows

(ZAW) as an aid to deploying a solution

Chapter14,

Lesson 5

Trang 37

The Microsoft Certified Professional (MCP) program provides thebest method of proving your command of current Microsoft

products and technologies Microsoft, an industry leader in

certification, is on the forefront of testing methodology Its

exams and corresponding certifications are developed to

validate your mastery of critical competencies as you designand develop, or implement and support, solutions with Microsoftproducts and technologies Computer professionals who becomeMicrosoft certified are recognized as experts and are soughtafter industry-wide

The MCP program offers five certifications, based on specificareas of technical expertise:

Microsoft Certified Professional Demonstrates in-depth

knowledge of at least one Microsoft operating system

Candidates can pass additional Microsoft certification exams

to further define their skills with the Microsoft BackOfficeintegrated family of server software products, developmenttools, or desktop programs

Microsoft Certified Professional—Specialist: Internet

Designates MCPs with a specialty in the Internet, who arequalified to plan security, install, and configure server

products, manage server resources, extend servers to runCGI scripts or ISAPI scripts, monitor and analyze

Microsoft Certified Solution Developer (MCSD)

Trang 38

business solutions with Microsoft development tools,

technologies, and platforms, including Microsoft Office andBackOffice

Microsoft Certified Trainer (MCT) Demonstrates the

instructional and technical ability to deliver Microsoft OfficialCurriculum through a Microsoft Certified Technical EducationCenter (Microsoft CTEC)

Microsoft Certification Benefits

Microsoft certification, one of the most comprehensive

certification programs available for assessing and maintainingsoftware-related skills, is a valuable measure of an individual'sknowledge and expertise Microsoft certification is awarded toindividuals who have successfully demonstrated their ability toperform specific tasks and implement solutions with Microsoftproducts As with any skills assessment and benchmarking

measure, certification brings a variety of benefits to the

individual, and to employers and organizations Not only doescertification provide guidance for what an individual should

know to be proficient, but it also provides an objective measurefor employers to consider when hiring IT professionals

Trang 39

Every effort has been made to ensure the accuracy of this bookand the contents of the companion CD Microsoft Press providescorrections for books through the World Wide Web at:

http://mspress.microsoft.com/support/

If you have comments, questions, or ideas regarding this book

or the companion CD, please send them to Microsoft Press viae-mail to:

tkinput@microsoft.com

or via postal mail to:

Microsoft Press

Attn: Desktop Applications with Microsoft Visual C++ 6.0 MCSDTraining Kit Editor

One Microsoft Way

Redmond, WA 98052-6399

Please note that product support is not offered through the

above addresses

Trang 40

This course was developed for Microsoft Press by ARIS

Corporation ARIS is an innovative, professional services andsoftware company that works with clients globally to maximizethe usefulness of existing information technologies and the

integration of new technologies ARIS enables companies andgovernment agencies to find and implement client/server andInternet solutions to improve their business operations Thecompany's consulting and training services utilize leading-edgetechnologies, primarily from Microsoft, Oracle, PeopleSoft, SunMicrosystems and Lotus ARIS is a Microsoft Solutions ProviderPartner

ARIS has offices across the United States and in the United

Kingdom and Germany, with over 900 employees worldwide.For more information about the products or services offered byARIS, visit the Web site at www.aris.com.

(www.witzendsoft.com) is a Seattle-based company that

provides custom programming services, specializing in VisualC++ and COM Individuals who participated in the production ofthis course include:

Ngày đăng: 25/03/2019, 16:41