Click here to Skip to main content
15,900,378 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Default Push Button Pin
Marc Soleda28-Aug-05 23:26
Marc Soleda28-Aug-05 23:26 
GeneralRe: Default Push Button Pin
Nishad S28-Aug-05 23:34
Nishad S28-Aug-05 23:34 
GeneralRe: Default Push Button Pin
Marc Soleda29-Aug-05 0:30
Marc Soleda29-Aug-05 0:30 
AnswerRe: Default Push Button Pin
John R. Shaw28-Aug-05 23:15
John R. Shaw28-Aug-05 23:15 
AnswerRe: Default Push Button Pin
toxcct29-Aug-05 1:37
toxcct29-Aug-05 1:37 
Questionhow to load dialog resource from a dll Pin
BK Pradeep28-Aug-05 22:18
BK Pradeep28-Aug-05 22:18 
AnswerRe: how to load dialog resource from a dll Pin
BK Pradeep28-Aug-05 22:27
BK Pradeep28-Aug-05 22:27 
GeneralRe: how to load dialog resource from a dll Pin
Weiye Chen31-Aug-05 15:00
Weiye Chen31-Aug-05 15:00 
Here is an example as requested.
// Load the resource dll
HMODULE hModule = LoadLibrary("C:\\another_resource.dll");
 
if(hModule != NULL)
{
   // Loading your dialog
   HWND hDialog = CreateDialog(hModule, MAKEINTRESOURCE(ID_DIALOG), /* Handle to parent window */, /* Pointer to dialog procedure function */);
 
   // Loading your bitmap
   HBITMAP hBitmap = LoadBitmap(hModule, MAKEINTRESOURCE(IDB_BITMAP);
 
   FreeLibrary(hModule);
}


<font=arial>Weiye Chen
Life is hard, yet we are made of flesh...
AnswerRe: how to load dialog resource from a dll Pin
Weiye Chen28-Aug-05 23:02
Weiye Chen28-Aug-05 23:02 
QuestionPlz Help : about selection of Date Pin
parims28-Aug-05 21:22
parims28-Aug-05 21:22 
AnswerRe: Plz Help : about selection of Date Pin
Marc Soleda28-Aug-05 22:08
Marc Soleda28-Aug-05 22:08 
General[Message Deleted] Pin
Marc Soleda29-Aug-05 0:20
Marc Soleda29-Aug-05 0:20 
AnswerRe: Plz Help : about selection of Date Pin
Marc Soleda29-Aug-05 0:31
Marc Soleda29-Aug-05 0:31 
QuestionHow to capture KeyDown event in Dialogue based MFC Application ? Pin
Amarelia28-Aug-05 20:41
Amarelia28-Aug-05 20:41 
AnswerRe: How to capture KeyDown event in Dialogue based MFC Application ? Pin
Jose Lamas Rios28-Aug-05 21:04
Jose Lamas Rios28-Aug-05 21:04 
GeneralRe: How to capture KeyDown event in Dialogue based MFC Application ? Pin
Amarelia29-Aug-05 0:14
Amarelia29-Aug-05 0:14 
AnswerRe: How to capture KeyDown event in Dialogue based MFC Application ? Pin
Marc Soleda28-Aug-05 21:07
Marc Soleda28-Aug-05 21:07 
QuestionRe: How to capture KeyDown event in Dialogue based MFC Application ? Pin
Eytukan28-Aug-05 22:49
Eytukan28-Aug-05 22:49 
AnswerRe: How to capture KeyDown event in Dialogue based MFC Application ? Pin
Eytukan28-Aug-05 22:57
Eytukan28-Aug-05 22:57 
GeneralRe: How to capture KeyDown event in Dialogue based MFC Application ? Pin
Marc Soleda28-Aug-05 23:05
Marc Soleda28-Aug-05 23:05 
QuestionRe: How to capture KeyDown event in Dialogue based MFC Application ? Pin
Eytukan28-Aug-05 23:55
Eytukan28-Aug-05 23:55 
GeneralRe: How to capture KeyDown event in Dialogue based MFC Application ? Pin
Amarelia29-Aug-05 0:15
Amarelia29-Aug-05 0:15 
QuestionKill Win32 Application Pin
MadhukarG28-Aug-05 20:35
MadhukarG28-Aug-05 20:35 
AnswerRe: Kill Win32 Application Pin
Zdeslav Vojkovic28-Aug-05 21:18
Zdeslav Vojkovic28-Aug-05 21:18 
GeneralRe: Kill Win32 Application Pin
Zdeslav Vojkovic28-Aug-05 21:19
Zdeslav Vojkovic28-Aug-05 21:19 

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.