CString and CRect types will be heavily used in my graphic apps.
- Enabling Visual Styles
- Porting a legacy MFC application to MFC Feature Pack
- MFC Feature Pack: An Introduction
- Profiling of C++-Applications in Visual Studio for Free
- Working with Strings
- Windows Data Types
- What are TCHAR, WCHAR, LPSTR, LPWSTR, LPCTSTR (etc.)?
- Why is PCTSTR not defined but LPCTSTR defined?
- CString Management<--- classic papers
- CRect Class
- CPoint Class
- POINT structure
- RECT structure
- CSize Class
- SIZE structure
- windows.h - main header file for the Win32 API
- Windows.h on wikipedias
- windef.h
- windows.h - main header file for the Win32 API
-
How to not #include
This topic explains how to configure your application to ensure that common controls are displayed in the user's preferred visual style.
Problems I encountered when polishing the GUI of an existing 200K LOC application.
Header files: BaseTsd.h; WinDef.h;WinNT.h
CStrings are a useful data type. They greatly simplify a lot of operations in MFC, making it much more convenient to do string manipulation. However, there are some special techniques to using CStrings, particularly hard for people coming from a pure-C background to learn. This essay discusses some of these techniques.
Similar to a Windows RECT structure.
Similar to the Windows POINT structure.
Header: atltypes.h
Header windef.h (include Windows.h)
Header file: windef.h (include Windows.h)
Similar to the Windows SIZE structure, which implements a relative coordinate or position.
The SIZE structure defines the width and height of a rectangle.
Header file: windef.h (include Windows.h)
windows.h is a Windows-specific header file for the C and C++ programming languages which contains declarations for all of the functions in the Windows API, all the common macros used by Windows programmers, and all the data types used by the various functions and subsystems. It defines a very large number of Windows specific functions that can be used in C. The Win32 API can be added to a C programming project by including the
No comments:
Post a Comment