Click here to Skip to main content
15,897,315 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to exchange data between property pages? Pin
Jose Lamas Rios25-Jul-05 19:00
Jose Lamas Rios25-Jul-05 19:00 
GeneralRe: How to exchange data between property pages? Pin
greenwyx28-Jul-05 3:22
greenwyx28-Jul-05 3:22 
GeneralRe: How to exchange data between property pages? Pin
Jose Lamas Rios28-Jul-05 3:38
Jose Lamas Rios28-Jul-05 3:38 
GeneralHiding Maximize Button Pin
jinbabaj24-Jul-05 21:30
jinbabaj24-Jul-05 21:30 
GeneralRe: Hiding Maximize Button Pin
Marc Soleda24-Jul-05 21:49
Marc Soleda24-Jul-05 21:49 
GeneralRe: Hiding Maximize Button Pin
Jose Lamas Rios24-Jul-05 21:52
Jose Lamas Rios24-Jul-05 21:52 
QuestionShowing bitmap in picture control? Pin
Member 341989124-Jul-05 20:08
Member 341989124-Jul-05 20:08 
AnswerRe: Showing bitmap in picture control? Pin
Andrew Kirillov24-Jul-05 20:32
Andrew Kirillov24-Jul-05 20:32 
Hello

Did you use SS_BITMAP style for your static control ?

Here is sample from MSDN:
CStatic myStatic;

// Create a child bitmap static control.
myStatic.Create(_T("my static"), 
   WS_CHILD|WS_VISIBLE|SS_BITMAP|SS_CENTERIMAGE, CRect(10,10,150,50), 
   pParentWnd);

// Set the bitmap of the static control to be the 
// system check-mark bitmap.
myStatic.SetBitmap( ::LoadBitmap(NULL, MAKEINTRESOURCE(OBM_CHECK)) );


Andrew
GeneralRe: Showing bitmap in picture control? Pin
Member 341989124-Jul-05 21:14
Member 341989124-Jul-05 21:14 
GeneralRe: Showing bitmap in picture control? Pin
Andrew Kirillov24-Jul-05 21:21
Andrew Kirillov24-Jul-05 21:21 
GeneralRe: Showing bitmap in picture control? Pin
Member 341989124-Jul-05 22:18
Member 341989124-Jul-05 22:18 
GeneralSpyware Detection Pin
Adeel68824-Jul-05 20:01
Adeel68824-Jul-05 20:01 
GeneralRe: Spyware Detection Pin
Alexander M.,25-Jul-05 9:00
Alexander M.,25-Jul-05 9:00 
GeneralShellExecute Pin
Usman Tasleem Akshaf24-Jul-05 18:50
Usman Tasleem Akshaf24-Jul-05 18:50 
GeneralRe: ShellExecute Pin
Jose Lamas Rios24-Jul-05 20:08
Jose Lamas Rios24-Jul-05 20:08 
GeneralRe: ShellExecute Pin
Jose Lamas Rios24-Jul-05 20:32
Jose Lamas Rios24-Jul-05 20:32 
GeneralRe: ShellExecute Pin
Usman Tasleem Akshaf24-Jul-05 22:11
Usman Tasleem Akshaf24-Jul-05 22:11 
GeneralRe: ShellExecute Pin
khan++25-Jul-05 0:41
khan++25-Jul-05 0:41 
GeneralRe: ShellExecute Pin
Jose Lamas Rios25-Jul-05 19:08
Jose Lamas Rios25-Jul-05 19:08 
GeneralButtons are disabled on dialog templates,. Pin
Maverick24-Jul-05 18:47
Maverick24-Jul-05 18:47 
GeneralRe: Buttons are disabled on dialog templates,. Pin
Marc Soleda24-Jul-05 19:37
Marc Soleda24-Jul-05 19:37 
GeneralRe: Buttons are disabled on dialog templates,. Pin
krmed25-Jul-05 2:45
krmed25-Jul-05 2:45 
GeneralRe: Buttons are disabled on dialog templates,. Pin
Maverick25-Jul-05 4:30
Maverick25-Jul-05 4:30 
GeneralRe: Buttons are disabled on dialog templates,. Pin
Maverick25-Jul-05 4:33
Maverick25-Jul-05 4:33 
GeneralRe: Buttons are disabled on dialog templates,. Pin
krmed25-Jul-05 4:58
krmed25-Jul-05 4:58 

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.