MFC Programming - CoderSource.net

CoderSource.net

MFC Programming - CoderSource.net:

MFC - Advanced

User Event in MFC - This article explains how to create and use MFC user events
Debugging VC ++ - CoderSource.net - Debugging in VC ++
Runtime class information using CRuntimeClass in MFC: - Runtime class information using CRuntimeClass in MFC - CoderSource.net
User Interface Threads in MFC - User Interface Threads in MFC - CoderSource.net
AfxBeginThread usage for creating a Mfc Worker Thread - Explains how to Create a MFC Worker Thread using AfxBeginThread
Unicode Programming in MFC - Brief on how to write Unicode applications in MFC - Codersource.net
Working with Timers in Visual C++ - Article by vkworld - Explains how to write Timer code in Visual C++ & MFC
Shutdown, Logoff API in Visual C++, MFC and Win32 - Article by Alok - Article by thatsalok - Explains how to use ExitWindowsEx API for workstation shutdown, logoff, restart etc.,
Alarm application in Visual C++/MFC - Explains how to create an alarm application with the help of Multi threading and CTime class in MFC/Visual C++
EFTidyCOM - HTML Code cleaner ATL Component - Article by thatsalok - Explains how to use the EFTidy Sourceforge component
Custom Splitter Window using MFC class CSplitterWnd - Explains how to create a Custom Splitter Window using MFC class CSplitterWnd and a CDialog.
A multi threaded animation application in MFC - Article by radsarma - A multi threaded application in MFC explaining worker and user interface threads and using an animation application.
ON_COMMAND_RANGE macro and multiple command buttons - Article by thatsalok - Explains how to use ON_COMMAND_RANGE macro for routing commands from several command buttons to a single function.
Inter Process Communication using WM_COPYDATA - Article by thatsalok - Explains how to carry out Inter Process communication using WM_COPYDATA structure.
Hashing Streams in VC++ - Article by shours - Explains how to use encryption algorithms in VC++
Threading in VC++ - Article by shours - Explains threading in VC++ along with concepts of Messages.
Introduction to OpenGL - Article by bagavathikumar - OpenGL is the abbreviation of Open Graphics Library. OpenGL is a standard which is cross platform application programming interface (API) for creating the 2D or 3D graphics application. It is a software interface to graphics hardware.

MFC Tutorials

MFC Tutorial Part 1 - MFC Tutorial explaining how to write a simple MFC program with only CFrameWnd and CWinApp classes.
MFC Tutorial Part 2 - Handling Message Maps - Explains about Message Maps in MFC.
MFC Tutorial Part 3 - Paint Brush application - MFC Tutorial explaining how to create a simple Paint Brush Application.
MFC Tutorial Part 4 - Creating Menus in MFC - MFC Tutorial - Creating Menus in MFC.
MFC Tutorial Part 5 - Dialog Boxes in MFC - MFC Tutorial - Dialog Boxes in MFC.
Modeless Dialog Boxes in MFC - MFC Tutorial Part 6 - Modeless Dialog Boxes in MFC from CoderSource.net
Command Buttons in MFC Dialog Boxes - MFC Tutorial Part 7 - Command Buttons in MFC Dialog Boxes from CoderSource.net
Check Box Usage - MFC Tutorial 8 - MFC Tutorial on Check Box Usage
CListBox Example - MFC Tutorial 9 - CListBox Example - MFC Tutorial 9 from CoderSource.net explains the usage of Listbox control in VC++/MFC
MFC Tree usage and example - MFC Tutorial X - MFC Tree CTreeCtrl usage and example
MFC Tutorial on Toolbars - MFC Tutorial on Toolbars. Explains how to use CToolBar class for adding a tool bar to a window
CFile Example - Explains how to use CFile class to create, read and write to disk files
CCombobox Example - Explains the usage of CCombobox class in MFC - Codersource.net
CListCtrl Usage - Explains how to use MFC CListCtrl to manipulate the List View controls
CFont Sample in MFC - CFont Sample in MFC - How to use CFont class.
CFileDialog Usage - Explains how to use CFileDialog for File Open and File Save as dialogs.
CArray - Explains how to use CArray template for storing a list of objects and data - Codersource.net
CString - Explains how to use CString in MFC programs - CoderSource.net
CToolTipCtrl - Showing Tool Tips on controls - Explains how to show tool tips on controls using CToolTipCtrl class
AfxMessageBox - Explains how to use AfxMessageBox and MessageBox functions in MFC.
CEdit - Explains how to use CEdit class for using the edit controls in MFC.
CProgressCtrl - Explains how to use CProgressCtrl for showing the progress of an operation.
MFC DLL Tutorial - Explains how Create and Use MFC Regular DLLs
CCombobox font ownerdraw in Visual C++/MFC - Explains how to use CCombobox ownerdraw feature for showing different fonts
MFC Print Tutorial - Explains how to write code for printing in MFC - Visual C++
CTabCtrl - Explains how to use CTabCtrl for the MFC Tab Control. Contains code examples.

MFC CListBox

CListBox example using Icons - Explains how to derive a class from CListbox for using Icons(with example).
CListBox Changing Font and Colors - Explains how to derive a class from CListbox for changing colors and font.
Using CCheckListBox instead of CListBox for supporting Check Boxes - Explains how to use CCheckListBox instead of CListBox for supporting Check boxes inside MFC list boxes
CListBox owner draw control for showing Fonts - Explains how to use CListBox owner draw control for showing Fonts in MFC
CListBox owner draw control for Displaying different colors - Explains how to use CListBox owner draw control for Displaying different colors in MFC
CListBox owner draw control for showing Pictures - Explains how to use CListBox class in Visual C++/MFC for showing pictures

MFC CButton

Bitmaps on Command Button using CBitmapButton - Explains how to place bitmaps on Command Button using MFC class CBitmapButton
MFC Radio Group control like Delphi - Explains how to write and use a control Radio Group like Delphi.

MFC CListCtrl

CListCtrl with Checkboxes - Explains how to use MFC CListCtrl to manipulate the List controls with check boxes
Working with ADO and CListCtrl List View in MFC - Article by vkworld - Explains how to ADO to query the data into a list control

MFC CComboBox

CCombobox Owner Draw Color Dialog - Explains the usage of owner draw on CCombobox class in MFC
CCombobox Owner Draw Picture Dialog - Explains how to create an owner draw combo box to show pictures

MFC Miscellaneous

MFC Resizing controls - Dynamically resizing of controls inside a window, dialog using MFC
Removing Untitled from MFC Window - Explains how to remove the Untitled tag from the title of a MFC Window using PreCreateWindow and CREATESTRUCT
Dialog Box PreTranslateMessage - Explains how to avoid closing of the dialog boxes when ESCAPE key or ENTER key is pressed. - Codersource.net
Single Instance Applications in MFC - Explains how to restrict MFC Windows applications to single instance. - Codersource.net
MFC General Owner Draw issues - Explains the general owner draw issues in MFC
Internet Relay Chat - Explains the basics of IRC or Internet Relay Chat
Visual C++/MFC Sample on Internet Relay Chat - Explains how to create an IRC Client using Visual C++
Using WinExec function - Article by radsarma - Explains how to use WinExec function
MFC Window without Title Bar - Article by vamsi - Explains how to create a Window in MFC without a title bar
Transparent MFC Window - Article by vamsi - Explains how to create a Transparent MFC Window such that the Window looks same as the background window present on the desktop.

MFC Sockets

Windows Socket Server Programming in MFC - Windows Socket Server Programming in MFC using CAsyncSocket - Codersource.net

MFC GDI Plus

General GDI Plus issues: - Explains how to install and write applications using MFC GDI Plus
Animation Control derived from MFC CStatic class using GDI Plus - Explains how to use MFC GDI Plus to create an animation control using CStatic class.
MFC GDI Plus thumbnail CListCtrl - Explains how to use MFC GDI Plus and CListCtrl class to implement a Thumnail image viewer
MFC GDI Plus Picture Box - Explains how to create a Picture box control in MFC GDI Plus with a CStatic control

MFC Message Queueing

Working with MSMQ in Visual C++ - Article by vkworld - Explains how to write MSMQ code in Visual C++. Contains a sample project.

ActiveX/COM/DCOM

Using a Custom ActiveX Control in MFC - Article by shours - Explains how to use an ActiveX control in MFC
Creating Custom ActiveX Controls in Visual C++ - Article by shours - Explains how to Create Custom ActiveX Controls in Visual C++.

Refer to a Friend:

Your Details:

Name:      e-mail:

Friend Details:

Name:     e-mail:        

                                               

MENU
Home
MFC 
C++
.Net
WIN32
Programming
Forum
My Articles
Add to Google
Add to My Yahoo!
Welcome to Community Server Login | Register | Faq  

SEARCH
Google
 

NOTES:


Thanks for visiting our CoderSource.net. This site will be improved with more articles. Interested visitors can also submit their articles through the Submit Article link.Your article will also be published after due consideration by the editor. 

© Copyright 2003. All rights on content reserved by CoderSource.net. Contact    About Us