Home > Store

MFC Answer Book, The: Solutions for Effective Visual C++ Applications

Register your product to gain access to bonus material or receive a coupon.

MFC Answer Book, The: Solutions for Effective Visual C++ Applications

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 1998
  • Dimensions: 7-1/4" x 9-1/4"
  • Pages: 704
  • Edition: 1st
  • Book
  • ISBN-10: 0-201-18537-7
  • ISBN-13: 978-0-201-18537-9

The MFC Answer Book: Solutions for Effective Visual C++ Applications is written for Windows developers who want to go beyond Wizard-supplied functionality and incorporate more sophisticated and customized user interface features into their applications. This book will save you days of frustration by providing answers to more than 130 tough, real-world programming questions, such as

  • How do I make my application remember the last active document and automatically reopen it?
  • How do I dynamically replace the view displayed in a window with another kind of view?
  • How do I implement an expanding dialog box?
  • How do I embed a property sheet inside another window, such as a form view or a dialog box?
  • How do I display and manage a progress indicator in a status bar pane?
  • How do I implement advanced and customized printing features in my application?

The MFC Answer Book offers the shortest path from frequently encountered programming problems to corresponding step-by-step solutions that you can integrate immediately into your current project.

The question and answer format of this book makes it ideal for developers looking for quick answers to a pressing questions. In addition to providing a concise, concrete answer to each question--along with immediately reusable code--this book also contains in-depth discussions that provide a better understanding of the inner workings of MFC applications to help you sharpen your MFC programming skills. This book also explores many utility functions and classes that dramatically reduce the effort needed to add frequently asked-for improvements and customizations to your applications.

The comprehensive contents, combined with an extensive, cross-referenced index, makes it easy to zoom in on exactly the solution you need.

If you want to enhance your MFC skills and learn effective techniques that will allow you to add outstanding features to your Windows applications, there is no better resource than this book.



0201185377B04062001

Downloads

CD Contents

Download the CD Contents related to this book.

Sample Content

Downloadable Sample Chapter

Browse the book online at http://www.mfcfaq.com!

I have worked hard to produce a book which is of the best quality and will really help MFC developers get the most "bang for the buck" out of their applications. The feedback I have received so far from reviewers, colleagues, and early readers has been overwhelmingly positive: the general consensus is that every serious MFC developer will benefit from the 130 carefully organized answers, techniques and explanations provided in the book.

I believe that the best way to help you understand how you can benefit from this book -- next to letting you actually hold it in your hands -- is to let you browse the book online. You can do exactly this by surfing to my web site at http://www.mfcfaq.com where you will find more than 150 pages of information excerpted from the printed book: foreword, preface, detailed table of contents, screen shots and figures... As a bonus, you will be able to download all the sample programs and try them on your own computer. -- Give it a try!

Eugène Kain (eugene_kain@hotmail.com)
September 24, 1998

Table of Contents



Foreword by Scot Wingo.


Preface.


Acknowledgments.


Terminology and Conventions.

Terminology Used in This Book.

Conventions Used in the Sample Code in This Book.



1. Document/View Architecture Backgrounder.

FAQ 1.1 What is the document/view architecture?

FAQ 1.2 What are the benefits of the document/view architecture?

FAQ 1.3 What components make up the document/view architecture, and how do they relate to each other?

FAQ 1.4 What is the role of the document?

FAQ 1.5 What is the role of the view?

FAQ 1.6 What is the role of the view’s frame window?

FAQ 1.7 What is the role of the document template?

FAQ 1.8 What is the role of the document template resource ID?

FAQ 1.9 How do the document/view architecture component objects get created?

FAQ 1.10 How does MFC route command messages?

FAQ 1.11 How does MFC implement the standard menu commands?



2. Documents and Document Templates.

Managing Document Templates.

FAQ 2.1 How should I create and reference multiple document templates in my application?

FAQ 2.2 How do I manage multiple document templates without having a dialog box pop up each time the user tries to create a new document?

FAQ 2.3 How do I create the resources associated with a new document template resource ID?

FAQ 2.4 How does MFC select the document template object to use when opening a file?

FAQ 2.5 How do I associate multiple file extensions with the same document or view class?

Managing Documents.

FAQ 2.6 How do I prevent an MDI application from opening a new (empty) document at start-up?

FAQ 2.7 How do I programmatically create a new (empty) document?

FAQ 2.8 How do I programmatically open an existing document file?

FAQ 2.9 How do I make my application remember the last active document and automatically reopen it?

FAQ 2.10 How do I make my documents autosave themselves without prompting the user?

FAQ 2.11 How do I implement a “Save all documents” menu command that does not prompt the user before saving each modified document?

FAQ 2.12 How do I programmatically close a document?

FAQ 2.13 How do I implement a “Close all documents” menu command?

Managing the Recent Files List (MRU).

FAQ 2.14 How do I customize the number of recent files shown in the “File” menu?

FAQ 2.15 How do I programmatically add a specific string to the Recent Files list?

FAQ 2.16 How do I intercept the selection of a Recent Files item by the user?

FAQ 2.17 How do I make my application automatically open the document that is at the top of the Recent Files list?

Miscellaneous Items.

FAQ 2.18 How do I get a pointer to the currently active document?

FAQ 2.19 How do I iterate through the list of all the currently opened documents?

FAQ 2.20 Why doesn’t my application register its document files with Windows Explorer, and how do I correct this situation?



3. Views and Frame Windows.

General Topics.

FAQ 3.1 How do I add a new kind of view or frame window to my application?

FAQ 3.2 How do I choose between implementing a specific behavior in the view class or in the view's frame window class?

Opening and Closing Views and Frame Windows.

FAQ 3.3 How do I programmatically open a view based on a specific document template?

FAQ 3.4 How do I open two (or more) specific views each time a new document is created?

FAQ 3.5 How do I programmatically close a view?

FAQ 3.6 How do I programmatically close all the views opened on a document?

FAQ 3.7 How do I prevent a view from being closed by the user? 137

Managing Size and Positions.

FAQ 3.8 How do I programmatically resize or reposition a view?

FAQ 3.9 How do I set the initial position and size of a view?

FAQ 3.10 How do I center my main application window?

FAQ 3.11 How do I center a view?

FAQ 3.12 How do I make a frame window nonresizable?

FAQ 3.13 How do I limit the maximum or minimum size of a view?

FAQ 3.14 How do I limit the repositioning of a view?

FAQ 3.15 How do I make a view initially appear minimized or maximized?

FAQ 3.16 How do I make my application start maximized or minimized?

FAQ 3.17 How do I make my main application window stay always on top of other windows?

FAQ 3.18 How do I make one of my views stay always on top of other views?

FAQ 3.19 How do I implement a full-screen view mode like the one in Visual C++ and Word?

Managing Captions, Icons, Cursors, and Background.

FAQ 3.20 How do I customize the captions of my views?

FAQ 3.21 How do I show a “modified” indicator in the captions of the views associated with a “dirty” document?

FAQ 3.22 How do I modify the icons associated with each kind of window in my application?

FAQ 3.23 How do I dynamically change the icon of my main application window ?

FAQ 3.24 How do I dynamically change the cursor for a view?

FAQ 3.25 How do I display an hourglass cursor during a lengthy operation?

FAQ 3.26 How do I change the background color of a view?

FAQ 3.27 How do I draw on the main application window background?

Form Views.

FAQ 3.28 How do I keep my form views synchronized with my other views?

FAQ 3.29 How do I make a form view initially appear with the exact size of the associated dialog resource?

FAQ 3.30 How do I use the UPDATE_COMMAND_UI mechanism in form views?

FAQ 3.31 How do I change the background color of a form view?

FAQ 3.32 How do I add ToolTips to the controls in a form view?

Splitter Windows.

FAQ 3.33 How do I program a window with both horizontal and vertical static splitter panes (three-way splitter)?

FAQ 3.34 How do I lock a splitter window so that the user cannot move the divider line?

FAQ 3.35 How do I programmatically resize the panes in a splitter window?

FAQ 3.36 How do I visually show the user which splitter pane contains the active view?

Switching Views.

FAQ 3.37 How do I dynamically switch the view displayed in an MDI child window or SDI main application window?

FAQ 3.38 How do I dynamically switch the view displayed in a splitter window?

Miscellaneous Items.

FAQ 3.39 How do I get a pointer to the active view?

FAQ 3.40 How do I get a pointer to the active frame window?

FAQ 3.41 How do I iterate through the list of all the views associated with a document?



4. Dialog Boxes.

General Topics.

FAQ 4.1 How do I set the initial position of a dialog box?

FAQ 4.2 How do I center a dialog box in relation to another window?

FAQ 4.3 How can a dialog box access the active document (or view) object?

FAQ 4.4 How do I control the background color of a dialog box?

FAQ 4.5 How do I add a preview area to (draw inside) a dialog box?

FAQ 4.6 How do I add an icon to a dialog box?

FAQ 4.7 How do I implement an expanding dialog box?

FAQ 4.8 How do I add a toolbar to a dialog box?

Managing Controls on a Dialog Box.

FAQ 4.9 How do I choose the control that will initially have the focus when a dialog box is displayed?

FAQ 4.10 How do I implement custom validation rules in a dialog box?

FAQ 4.11 How do I change the font and color of controls on my dialog box?

FAQ 4.12 How do I use the UPDATE_COMMAND_UI mechanism in dialog boxes?

FAQ 4.13 How do I add ToolTips support to the controls in a dialog box?



5. Property Sheets.

General Topics.

FAQ 5.1 How do I build and use a property sheet?

FAQ 5.2 How do I manage the Apply button in a property sheet?

FAQ 5.3 How do I programmatically change the active page in a property sheet?

FAQ 5.4 How do I customize the standard property sheet buttons?

FAQ 5.5 How do I control the size of my property sheet window?

Managing Tabs.

FAQ 5.6 How do I choose between a stacked row of tabs and a single row of scrolling tabs?

FAQ 5.7 How do I change the captions of the tabs of my property pages?

FAQ 5.8 How do I add icons to the tabs of my property pages?

Embedding Property Sheets.

FAQ 5.9 How do I embed a property sheet inside a dialog box?

FAQ 5.10 How do I embed a property sheet inside a form view?

FAQ 5.11 How do I embed a property sheet inside a splitter window pane?

FAQ 5.12 How do I embed a property sheet inside a miniframe window?



6. Toolbars and Status Bars.

Toolbars.

FAQ 6.1 How do I add one or more toolbars to my main frame window or to a view’s frame window?

FAQ 6.2 What are the various options available for controlling the position, orientation, and general behavior of my toolbars?

FAQ 6.3 How do I programmatically dock a toolbar next to another one?

FAQ 6.4 How do I add a combo box to a toolbar?

FAQ 6.5 How do I add text labels to my toolbar buttons?

FAQ 6.6 How do I implement a menu that allows users to select the toolbars they want to see?

FAQ 6.7 How do I allow users to choose the toolbar they want to see by selecting it in a popup menu that appears when they right-click on a docking zone?

FAQ 6.8 How do I dynamically switch between different toolbars?

Status Bars.

FAQ 6.9 How do I add a custom status bar to a view's frame window?

FAQ 6.10 How do I update the text of my status bar panes?

FAQ 6.11 How do I customize my status bar font?

FAQ 6.12 How do I draw in a status bar pane?

FAQ 6.13 How do I maximize the message pane when displaying menu prompts?

FAQ 6.14 How do I display a progress indicator in a status bar?

General Control Bar Topics.

FAQ 6.15 How do I programmatically show or hide a control bar?

FAQ 6.16 How do I set the caption of a floating control bar?

FAQ 6.17 How do I save and restore the position and state of my control bars?

FAQ 6.18 How do I create custom control bars?



7. Menus.

FAQ 7.1 How do I handle several distinct menu commands with a single function?

FAQ 7.2 How do I implement a right-button popup menu (context menu)?

FAQ 7.3 How do I display a popup menu when the user clicks a button on a toolbar?

FAQ 7.4 How do I display a popup menu when the user clicks a button in a dialog box?

FAQ 7.5 How do I implement an owner-drawn menu?



8. Printing and Print Preview.

FAQ 8.1 What is the MFC printing architecture?

FAQ 8.2 How do I implement printing and print preview in my MFC application?

FAQ 8.3 How do I print a document whose page length is not known in advance (on-the-fly pagination)?

FAQ 8.4 How do I predict page breaks as Microsoft Word does?

FAQ 8.5 How do I programmatically change the printing orientation (portrait versus landscape) on-the-fly?

FAQ 8.6 How do I print without prompting the user with the standard Print dialog box?

FAQ 8.7 How do I customize the standard Print dialog box and retrieve the options selected by the user?

FAQ 8.8 How do I customize the Printing . . . dialog box?

FAQ 8.9 How do I stop or abort a print job?

FAQ 8.10 How do I implement print preview in shades of gray for a monochrome printer?

FAQ 8.11 How do I distinguish between drawing, print preview, and actual printing in my code?



Appendix A Utility Functions and Classes.


Appendix B Bibliography and Additional Resources.


Index. 0201185377T04062001

Preface

Why Another Book on Microsoft Foundation Classes Programming?

To answer this question, let us look at a typical MFC programming scenario. First, you attend an MFC training session or read some introductory books on MFC programming. You quickly become able to write and customize small tutorial applications. AppWizard and ClassWizard allow you reach an unprecedented level of productivity. Your applications support the multiple document interface (MDI) and have a professional-looking user interface with a floating toolbar, a status bar, printing and print preview, and so on.

You then go back to work and start using MFC to produce great-looking applications. Code flows freely from your keyboard, the wizards work hard at your side, and life looks great under the MFC sun.

One day, you start wondering about how to implement new features that were not explicitly covered in the training session. For example:

  • Make your application remember the last active document and automatically reopen it.
  • Support multiple kinds of views on the same document and allow the user to explicitly open any kind of view.
  • Add ToolTips to the controls in a form view.
  • Dynamically switch the view displayed in a window to replace it with another kind of view.
  • Implement an expanding dialog box.
  • Embed a property sheet (tabbed dialog box) inside another window, such as a form view, a dialog box, or a mini frame window.
  • Display a progress indicator in a status bar pane.
  • Have a menu pop up when the user clicks a button on a toolbar or in a dialog box.
  • Support headers and footers in your print and print preview.
  • Display a custom Printing . . . dialog box with a progress indicator.

You feel that implementing these features cannot be that difficult: after all, you have already seen them in other Windows applications. But where do you start looking for an answer?

The solution may be as easy as knowing the specific MFC virtual functions that you must override to produce the desired effect or knowing the Windows messages you should trap and handle appropriately. For some features, however, more involved techniques may be needed--even to the point of tracing into MFC's source code to understand just where and how you can act to modify your application's default behavior.

One infuriating fact of life is that the answer to your particular question may be lying around somewhere: buried in some MFC programming book or magazine article, on the Microsoft Developer's Network CD-ROM, in the Microsoft Knowledge Base, in the various threads and mailing lists maintained on the Internet, or even in the online books or samples contained on the Visual C++ CD-ROM. The problem is this: How are you going to locate the most relevant and reliable source of information among all these resources? How are you going to find the solution you need right now?

Introducing The MFC Answer Book

This book is intended to provide ready-to-use techniques that answer the most common real-world questions that typically confront MFC developers. The structure of this book is specifically designed to help you quickly locate the answers youire looking for and integrate the relevant solutions into your own programs.

The FAQ format of this book makes it ideally suited to the needs of the developer looking for a quick answer to a pressing question. At the same time, you will find that many techniques will give you a better understanding of the inner workings of MFC applications and more generally help you improve your MFC programming skills. In particular, the Explanations and Additional Comments sections often delve into the MFC source code or undocumented functions to explain how the techniques discussed work and how they differ from or integrate with MFC's default behavior.

Key Features of This Book

Although most books about Visual C++ and MFC programming answer valid questions about MFC programming and provide useful tips if you read them from cover to cover, most of them are not structured in a way that allows you to quickly find an answer to a given problem. Moreover, even if you find the answer, it is likely to be buried inside a larger discussion and not readily available as a step-by-step technique that you can simply incorporate into your current project to add a required feature.

In contrast, The MFC Answer Book is specifically designed to help MFC developers solve their programming problems in the most efficient way:

  • This book is organized so that the table of contents will help you to quickly zoom in on the FAQs that answer your questions.
  • I have made every effort to build a convenient and comprehensive index that will direct you to all the pages relating to any keyword or function referenced in this book.
  • Each FAQ is written in a concise way that first gives you the step-by-step answer you need. Explanations and additional comments are deferred to later sections so that they do not get in the way of the solution but are readily available for those who want to go further than the cookbook recipe and wish to understand what goes on under the hood.
  • Each explanation comes with tested and reusable sample code that you can plug into your MFC application in a few minutes to integrate the required functionality immediately.
To summarize: The goal of this book is to offer you the shortest way from a problem to the corresponding step-by-step solution that you can integrate immediately into your current project.

Who Should Read This Book

This book is written for all MFC developers who wish to solve their MFC-related problems and at the same time learn advanced MFC techniques that will allow them to add a range of sophisticated features to their applications.

This book assumes a basic proficiency both in the C++ language and in MFC programming as well as a knowledge of how to use the Visual C++ integrated development environment and tools such as AppWizard and ClassWizard. The Visual C++ wizards are discussed only when used in nonstandard ways to achieve a specific result.

To benefit fully from this book, you should already understand the basic MFC concepts presented in the Scribble tutorial described in the Visual C++ documentation: the document/view architecture, message maps, the UPDATE_COMMAND_UI mechanism, dialog data exchange (DDX), and so on. Typically, you will either have followed the Scribble tutorial, attended a training session in MFC programming, or read one of the many introductory books on this topic.

Of course, having a more extensive background in MFC programming will not hurt! Quite to the contrary. Based on feedback from reviewers and colleagues, I know that this book will also appeal to experienced MFC developers, who will find many useful techniques to add to their bag of MFC programming tricks.

Finally, reading this book will allow all MFC developers to improve their understanding of fundamental MFC concepts and sharpen their MFC programming skills.

How To Use This Book

This book focuses on the 32-bit MFC version 4.x for Windows 95 and Windows NT. However, most techniques and concepts discussed here also apply to older versions of MFC. They should also remain valid for future MFC versions, because they rely on core MFC classes and behaviors that are not likely to evolve in a way that breaks existing code.

I tried to write this book so that it will become a flexible tool that you can use as you want to. This means that you can either read this book from cover to cover--I would certainly appreciate it if you do--or use it as a reference to look up only the specific topics that interest you. Most FAQs are cross-referenced to help you locate all the relevant information you might need even if you jump into the middle of the book.

However, before you start hunting for answers to your MFC questions, I suggest that you take a few minutes to read Chapter 0 (Terminology and Conventions) and Chapter 1 (Document/View Architecture Backgrounder) to make sure that we start on the same ground with respect to fundamental document/view architecture concepts.

What Is on the CD-ROM

The companion CD-ROM contains source code and executables for all of the book's sample programs. The folder hierarchy is organized first by chapter number and then by project name. Thus, the AutoSaveDoc project for Chapter 2 is located in the d:\Chap02\AutoSaveDoc folder, where "d:" is your CD-ROM drive's letter.

All the executables are located under their respective chapter folders. For example, all the executable sample programs for Chapter 2 are located in the d:\Chap02 folder. The EkUtil.h and EkUtil.cpp files located at the root of the hierarchy contain the various helper Ek . . . . . . functions and classes that are presented throughout the book.

You can choose to copy the whole folder hierarchy from the CD-ROM to your hard disk, copy only the examples that are of interest to you, or access the files directly from the CD-ROM. If you copy files from the CD-ROM to your hard disk, remember to remove the read-only attribute from the files on your hard disk.

All sample programs have been compiled and tested under both Visual C++ 5.0 and Visual C++ 6.0. They will also work properly with Visual C++ 4.x, but you will have to manually create the appropriate .mdp project file. Note, however, that the .dsp project files on the CD-ROM have the Visual C++ 5.0 format: if you open them with Visual C++ 6.0, simply answer Yes to the dialog box asking whether you want to convert these files to the new format.

Your Feedback Is Welcome

I have done my best to accurately present topics that I feel should be of interest to most MFC developers. However, if you think that a topic should be covered differently or should use another technique, don't hesitate to send me e-mail at ekain@awl.com. Also, e-mail me if you want to submit a topic idea or a technique of your own that solves a problem you have encountered, if you find an error or have any problem with this book, or if you have suggestions or want to discuss anything with me.

I can promise that I will read all e-mail messages, take them into account, and try to respond to each of them as soon as possible. Note, however, that I may not have the time to answer specific MFC programming questions. You can also visit my Web site at http://www.mfcfaq.com/ to get late-breaking information.

I hope that this book will make you enjoy MFC programming more than ever and help you deliver great applications.

Good luck with your MFC projects!

--Eugène Kain, July 1998

0201185377P04062001

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020