skip to main
|
skip to sidebar
Win32 Tips
Wednesday, March 25, 2009
How to Launch Internet Properties Control Applet
Use the following code:
WinExec("rundll32 inetcpl.cpl LaunchConnectionDialog", SW_SHOW);
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Popular Posts
How to Launch Internet Properties Control Applet
Use the following code: WinExec("rundll32 inetcpl.cpl LaunchConnectionDialog", SW_SHOW);
Some C++ Tips and Functions
A simple C++ function to tokenize a string #include <vector> #include <string> #include <sstream> using namespace std;...
Measure Time In Milliseconds
Use the DWORD GetTickCount(void); function. The return value is the number of milliseconds that have elapsed since the system was started. ...
How to Get a Handle to a Control
Use GetDlgItem function: HWND GetDlgItem( HWND hDlg, // handle of dialog box int nIDDlgItem // identifier of control );
Attach Icon to the Title bar of Dialog-based Application
HICON hIcon = LoadIcon (hInst, MAKEINTRESOURCE (DLG_ICON)); SendMessage (hwnd, WM_SETICON, (WPARAM) ICON_SMALL, (LPARAM) hIcon);
Blog Archive
►
2011
(1)
►
May
(1)
▼
2009
(16)
▼
March
(16)
Make Sure Only One Instance of the Application Is ...
How to Launch Internet Properties Control Applet
Measure Time In Milliseconds
Measure Time In Milliseconds
Retrieve Menu Item Text with GetMenuItemInfo function
Use Bold or Underlined Font
Enable a Button Depending On Whether There is Any ...
Set Foreground Color to an Individual Edit Box or ...
How to Get a Handle to a Control
Create A Combo Box on a Toolbar
Create Toolbar Tips
How to Trap Enter key on Edit Box
Display Last Error
Attach Menu to Dialog-based Application
Retrieving the Path of the Running Application
Attach Icon to the Title bar of Dialog-based Appl...
About Me
Erik K.
Toronto, Ontario, Canada
View my complete profile
No comments:
Post a Comment