MFC - Context sensitive help, Dialog box creation
The program for implementing the context sensitive help.
// myapp.cpp
#include
#include "mydialog.h"
#include "myapp.h"
#include "resource.h"
BEGIN_MESSAGE_MAP ( myapp, CWin..more
MFC - Parent Controls
Parent Controls:
An object is referred to as a parent or container when its main job is to host other controls. This is done by adding controls to it. The most com..more
MFC - Parent Windows Styles
Parent Windows Styles:
Sunken Edges: A window appears with a sunken when its body is sunk with regards to its borders. To create such as window, applying the WS..more
Generalized Parsing Class for MFC
One of the many tasks that a programmer has is taking a set of
characters and breaking it down ino its discrete parts.
This may be a comma delimited data file, a full directory path,
or a set of program directives t
MFC - Creating winhelp() , windows HTML help file
/*
WinHelp() displays the table of contents screen , and the user can now navigate
through the help file. The source code of the sample MFC application is given.
*/
// myapp.cpp
#include
#include "myframe.h"
#include "myapp.h"
..more
MFC - Simple chat program
This article gives information on
client server communication using
sockets. Thanks to Ernest Laurentin for
writing such an excellent class called
SocketComm which provides methods which
are..
MFC - Fundamentals of Windows Controls
An object is referred to as a parent or container
when its main job is to host other controls. This
is done by adding controls to it. The most
commonly used parent control is the dialog box. In
th..
MFC - MFC Library
As the Microsoft Windows 3.X and then 5.5
operating system was becoming popular, many
programmers were interested in creating graphical
programs. They had to use Win32, which made it
possible only..
MFC - Date Picker
The Date and Time Picker is a control that allows
the user to select either a date or a time value.
This control provides two objects in one:..
MFC - Microsoft Foundation Class ( MFC )
Microsoft Visual C++ is a programming environment
used to create computer applications for the
Microsoft Windows family of operating systems...