Holas
//ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
//THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/ORFITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright 1994-1995 Microsoft Corporation. All Rights Reserved.
// Modifications 1995 Borland International, Inc. All Rights Reserved.
//
// PROGRAM:Expert.c
//
// PURPOSE: Demonstrates how to manipulate a expert control
//
// PLATFORMS: Windows 95
//
// FUNCTIONS:
// WinMain() - calls initialization function, processes message loop
//InitApplication() - Initializes window data nd registers window
// InitInstance() -saves instance handle and creates main window
// MainWindProc() Processes messages
// About() - Process messagesfor "About" dialog box
// YourInfo() - Process the "Your Information" Expert page
// WorkHabits() - Processes the "Work Habits" Expert page
// TeamWork() - Processes the "Team Work" Expert page// Reliability() - Processes the "Reliability" Expert page
// Goals() - Processes the "Goal Attainment" Expert page
// Adaptation() - Processes the "Adaptability to Change" Expert page
//FillInPropertyPage() - Fills in a PROPSHEETPAGE structure
// CreateExpert() - Creates the expert
// GenerateReview() - Generates the resulting review
//
// SPECIAL INSTRUCTIONS: N/A
//
#include// includes basic windows functionality
#include // includes the string functions
#include // includes the property sheet functionality
#include "resource.h" // includes thedefinitions for the resources
#include "expert.h" // includes the application-specific information
REVIEWINFO rvInfo; // a structure containing the review information
HWND hwndEdit;// handle to the main MLE
TCHAR lpReview[MAX_BUF]; // Buffer for the review
//
//
// FUNCTION: WinMain(HANDLE, HANDLE, LPSTR, int)
//
// PURPOSE: Main entry point for the application....
Regístrate para leer el documento completo.