Click here to Skip to main content
15,904,652 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Installed browsers Pin
Rama Krishna Vavilala8-Jan-07 0:07
Rama Krishna Vavilala8-Jan-07 0:07 
AnswerRe: Installed browsers Pin
David Crow8-Jan-07 4:56
David Crow8-Jan-07 4:56 
QuestionTo Find out blocked ports in our system Pin
johnalek7-Jan-07 22:25
johnalek7-Jan-07 22:25 
AnswerRe: To Find out blocked ports in our system Pin
Mark Salsbery8-Jan-07 5:57
Mark Salsbery8-Jan-07 5:57 
GeneralRe: To Find out blocked ports in our system Pin
johnalek8-Jan-07 17:24
johnalek8-Jan-07 17:24 
GeneralRe: To Find out blocked ports in our system Pin
Mark Salsbery9-Jan-07 6:18
Mark Salsbery9-Jan-07 6:18 
QuestionReserved resource IDS of MFC Pin
Mushtaque Nizamani7-Jan-07 20:53
Mushtaque Nizamani7-Jan-07 20:53 
AnswerRe: Reserved resource IDS of MFC Pin
prasad_som7-Jan-07 22:07
prasad_som7-Jan-07 22:07 
What you want to achieve ?
Refer winuser.h for set of ids used by windows.
dialog command ids'
#define IDOK                1
#define IDCANCEL            2
#define IDABORT             3
#define IDRETRY             4
#define IDIGNORE            5
#define IDYES               6
#define IDNO                7
#if(WINVER >= 0x0400)
#define IDCLOSE         8
#define IDHELP          9
#endif /* WINVER >= 0x0400 */

Cursor Id's
#define IDC_ARROW           MAKEINTRESOURCE(32512)
#define IDC_IBEAM           MAKEINTRESOURCE(32513)
#define IDC_WAIT            MAKEINTRESOURCE(32514)
#define IDC_CROSS           MAKEINTRESOURCE(32515)
#define IDC_UPARROW         MAKEINTRESOURCE(32516)
#define IDC_SIZE            MAKEINTRESOURCE(32640) /* OBSOLETE: use IDC_SIZEALL */
#define IDC_ICON            MAKEINTRESOURCE(32641) /* OBSOLETE: use IDC_ARROW */
#define IDC_SIZENWSE        MAKEINTRESOURCE(32642)
#define IDC_SIZENESW        MAKEINTRESOURCE(32643)
#define IDC_SIZEWE          MAKEINTRESOURCE(32644)
#define IDC_SIZENS          MAKEINTRESOURCE(32645)
#define IDC_SIZEALL         MAKEINTRESOURCE(32646)
#define IDC_NO              MAKEINTRESOURCE(32648) /* not in win3.1 */
#if(WINVER >= 0x0500)
#define IDC_HAND            MAKEINTRESOURCE(32649)
#endif /* WINVER >= 0x0500 */
#define IDC_APPSTARTING     MAKEINTRESOURCE(32650) /* not in win3.1 */
#if(WINVER >= 0x0400)
#define IDC_HELP            MAKEINTRESOURCE(32651)
#endif /* WINVER >= 0x0400 */

Icons id's
#define IDI_APPLICATION     32512
#define IDI_HAND            32513
#define IDI_QUESTION        32514
#define IDI_EXCLAMATION     32515
#define IDI_ASTERISK        32516
#if(WINVER >= 0x0400)
#define IDI_WINLOGO         32517
#endif /* WINVER >= 0x0400 */
#else
#define IDI_APPLICATION     MAKEINTRESOURCE(32512)
#define IDI_HAND            MAKEINTRESOURCE(32513)
#define IDI_QUESTION        MAKEINTRESOURCE(32514)
#define IDI_EXCLAMATION     MAKEINTRESOURCE(32515)
#define IDI_ASTERISK        MAKEINTRESOURCE(32516)
#if(WINVER >= 0x0400)
#define IDI_WINLOGO         MAKEINTRESOURCE(32517)
#endif /* WINVER >= 0x0400 */
#endif /* RC_INVOKED */

#if(WINVER >= 0x0400)
#define IDI_WARNING     IDI_EXCLAMATION
#define IDI_ERROR       IDI_HAND
#define IDI_INFORMATION IDI_ASTERISK
#endif /* WINVER >= 0x0400 */






GeneralRe: Reserved resource IDS of MFC Pin
Cristian Amarie8-Jan-07 1:38
Cristian Amarie8-Jan-07 1:38 
AnswerRe: Reserved resource IDS of MFC Pin
Mark Salsbery8-Jan-07 6:06
Mark Salsbery8-Jan-07 6:06 
QuestionItem icon in Add/Remove progarms dialog Pin
LiYS7-Jan-07 20:43
LiYS7-Jan-07 20:43 
AnswerRe: Item icon in Add/Remove progarms dialog Pin
Monty27-Jan-07 20:59
Monty27-Jan-07 20:59 
Questionstrcpy working even after deleting the pointer Pin
pyarigopal7-Jan-07 20:42
pyarigopal7-Jan-07 20:42 
AnswerRe: strcpy working even after deleting the pointer Pin
Monty27-Jan-07 21:08
Monty27-Jan-07 21:08 
AnswerRe: strcpy working even after deleting the pointer [modified] Pin
Michael Dunn7-Jan-07 21:10
sitebuilderMichael Dunn7-Jan-07 21:10 
AnswerRe: strcpy working even after deleting the pointer Pin
Waldermort7-Jan-07 21:14
Waldermort7-Jan-07 21:14 
GeneralRe: strcpy working even after deleting the pointer Pin
pyarigopal8-Jan-07 18:21
pyarigopal8-Jan-07 18:21 
AnswerRe: strcpy working even after deleting the pointer Pin
CPallini7-Jan-07 21:25
mveCPallini7-Jan-07 21:25 
GeneralRe: strcpy working even after deleting the pointer Pin
prasad_som7-Jan-07 21:29
prasad_som7-Jan-07 21:29 
QuestionHow can i use Image magick in MFC? Pin
$uresh $hanmugam7-Jan-07 20:17
$uresh $hanmugam7-Jan-07 20:17 
AnswerRe: How can i use Image magick in MFC? Pin
Hamid_RT7-Jan-07 20:37
Hamid_RT7-Jan-07 20:37 
GeneralRe: How can i use Image magick in MFC? Pin
$uresh $hanmugam7-Jan-07 21:04
$uresh $hanmugam7-Jan-07 21:04 
GeneralRe: How can i use Image magick in MFC? Pin
Hamid_RT7-Jan-07 21:37
Hamid_RT7-Jan-07 21:37 
GeneralRe: How can i use Image magick in MFC? Pin
$uresh $hanmugam7-Jan-07 21:51
$uresh $hanmugam7-Jan-07 21:51 
QuestionDLL Injection vs Code Injection Pin
SelvaKr7-Jan-07 20:06
SelvaKr7-Jan-07 20:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.