Click here to Skip to main content
15,798,037 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionChanging the icons displayed on an outlook bar style property sheet (class CMFCPropertySheet) Pin
rdeekonda20-Oct-21 22:05
rdeekonda20-Oct-21 22:05 
AnswerRe: Changing the icons displayed on an outlook bar style property sheet (class CMFCPropertySheet) Pin
Richard MacCutchan20-Oct-21 23:21
mveRichard MacCutchan20-Oct-21 23:21 
GeneralRe: Changing the icons displayed on an outlook bar style property sheet (class CMFCPropertySheet) Pin
rdeekonda21-Oct-21 22:47
rdeekonda21-Oct-21 22:47 
GeneralRe: Changing the icons displayed on an outlook bar style property sheet (class CMFCPropertySheet) Pin
Victor Nijegorodov21-Oct-21 23:55
Victor Nijegorodov21-Oct-21 23:55 
GeneralRe: Changing the icons displayed on an outlook bar style property sheet (class CMFCPropertySheet) Pin
rdeekonda22-Oct-21 7:10
rdeekonda22-Oct-21 7:10 
GeneralRe: Changing the icons displayed on an outlook bar style property sheet (class CMFCPropertySheet) Pin
Victor Nijegorodov22-Oct-21 7:55
Victor Nijegorodov22-Oct-21 7:55 
GeneralRe: Changing the icons displayed on an outlook bar style property sheet (class CMFCPropertySheet) Pin
rdeekonda24-Oct-21 7:12
rdeekonda24-Oct-21 7:12 
GeneralRe: Changing the icons displayed on an outlook bar style property sheet (class CMFCPropertySheet) Pin
rdeekonda25-Oct-21 3:31
rdeekonda25-Oct-21 3:31 
Got the answer mostly due to Microsoft Q&A This code placed in the derived property sheet works if the bitmap images are all of exactly the same size Thanks also to Victor Nijegorodov for his suggestions:

m_wndPane1.RemoveAllButtons();

retval=m_wndPane1.AddButton(m_bmpimgs[0], "Create a Job", 10050, 0);
retval=m_wndPane1.AddButton(m_bmpimgs[1], "Manage a Job", 10051, 1);
retval=m_wndPane1.AddButton(m_bmpimgs[2], "Restore a Job", 10052, 2);

m_wndPane1.InvalidateButton(0);
m_wndPane1.InvalidateButton(1);
m_wndPane1.InvalidateButton(2);
Deekonda Ramesh

Rant[REPOST] Changing the icons displayed on an outlook bar style property sheet (class CMFCPropertySheet) Pin
Richard Deeming21-Oct-21 0:31
mveRichard Deeming21-Oct-21 0:31 
GeneralRe: [REPOST] Changing the icons displayed on an outlook bar style property sheet (class CMFCPropertySheet) Pin
rdeekonda21-Oct-21 22:59
rdeekonda21-Oct-21 22:59 
GeneralRe: [REPOST] Changing the icons displayed on an outlook bar style property sheet (class CMFCPropertySheet) Pin
Richard MacCutchan22-Oct-21 0:57
mveRichard MacCutchan22-Oct-21 0:57 
QuestionCBitmap::LoadBitmap help Pin
ForNow18-Oct-21 16:55
ForNow18-Oct-21 16:55 
AnswerRe: CBitmap::LoadBitmap help Pin
Victor Nijegorodov18-Oct-21 21:33
Victor Nijegorodov18-Oct-21 21:33 
GeneralRe: CBitmap::LoadBitmap help Pin
ForNow19-Oct-21 2:59
ForNow19-Oct-21 2:59 
GeneralRe: CBitmap::LoadBitmap help Pin
Victor Nijegorodov19-Oct-21 3:50
Victor Nijegorodov19-Oct-21 3:50 
GeneralRe: CBitmap::LoadBitmap help Pin
ForNow19-Oct-21 4:22
ForNow19-Oct-21 4:22 
GeneralRe: CBitmap::LoadBitmap help Pin
Victor Nijegorodov19-Oct-21 6:20
Victor Nijegorodov19-Oct-21 6:20 
GeneralRe: CBitmap::LoadBitmap help Pin
ForNow19-Oct-21 6:32
ForNow19-Oct-21 6:32 
GeneralRe: CBitmap::LoadBitmap help Pin
Richard MacCutchan19-Oct-21 7:41
mveRichard MacCutchan19-Oct-21 7:41 
GeneralRe: CBitmap::LoadBitmap help Pin
ForNow19-Oct-21 7:51
ForNow19-Oct-21 7:51 
GeneralRe: CBitmap::LoadBitmap help Pin
Richard MacCutchan19-Oct-21 9:01
mveRichard MacCutchan19-Oct-21 9:01 
AnswerRe: CBitmap::LoadBitmap Strange Result From CIMage::Load and CBitmap::Attach Pin
ForNow19-Oct-21 13:10
ForNow19-Oct-21 13:10 
GeneralRe: CBitmap::LoadBitmap Strange Result From CIMage::Load and CBitmap::Attach Pin
Victor Nijegorodov19-Oct-21 22:42
Victor Nijegorodov19-Oct-21 22:42 
GeneralRe: CBitmap::LoadBitmap Strange Result From CIMage::Load and CBitmap::Attach Pin
Richard MacCutchan19-Oct-21 23:32
mveRichard MacCutchan19-Oct-21 23:32 
GeneralRe: CBitmap::LoadBitmap Strange Result From CIMage::Load and CBitmap::Attach Pin
Richard MacCutchan20-Oct-21 4:14
mveRichard MacCutchan20-Oct-21 4:14 

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.