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

C / C++ / MFC

 
GeneralRe: Add sizing gripper to dialog? Pin
HPSI19-Aug-03 3:14
HPSI19-Aug-03 3:14 
GeneralRe: Add sizing gripper to dialog? Pin
Dominik Reichl19-Aug-03 3:23
Dominik Reichl19-Aug-03 3:23 
GeneralRe: Add sizing gripper to dialog? Pin
HPSI19-Aug-03 3:29
HPSI19-Aug-03 3:29 
GeneralRe: Add sizing gripper to dialog? Pin
Ravi Bhavnani19-Aug-03 3:18
professionalRavi Bhavnani19-Aug-03 3:18 
GeneralRe: Add sizing gripper to dialog? Pin
Dominik Reichl19-Aug-03 3:24
Dominik Reichl19-Aug-03 3:24 
GeneralTray Icons Pin
Marissa18218-Aug-03 23:00
Marissa18218-Aug-03 23:00 
GeneralRe: Tray Icons Pin
Iain Clarke, Warrior Programmer18-Aug-03 23:27
Iain Clarke, Warrior Programmer18-Aug-03 23:27 
QuestionHow to dynamic change toolbar for a dialog app Pin
Old Gun18-Aug-03 22:07
Old Gun18-Aug-03 22:07 
//Toolbar m_wndtoolbar
// m_wndtoolbar is a public dialog member variable
//follow is my app para ,But it failed to change toolbar
void CToolbarDlg::OnButton ShowToolBar1()
{
// TODO: Add your control notification handler code here
if (m_wndtoolbar.GetSafeHwnd())
{
m_wndtoolbar.DestroyWindow();
}
if (!m_wndtoolbar.CreateEx( this,TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_ALIGN_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS ,
CRect(4,4,0,0)) || !m_wndtoolbar.LoadToolBar(IDR_TOOLBAR1) )
{
TRACE0("failed to create toolbar\n");
return;
}
m_wndtoolbar.ShowWindow(SW_SHOW);
RepositionBars(AFX_IDW_CONTROLBAR_FIRST, AFX_IDW_CONTROLBAR_LAST, 0);

}

void CToolbarDlg::OnButtonShowToolBar2()
{
// TODO: Add your control notification handler code here
if (m_wndtoolbar.GetSafeHwnd())
{
m_wndtoolbar.DestroyWindow();
}
if (!m_wndtoolbar.CreateEx( this,TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_ALIGN_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS ,
CRect(4,4,0,0)) || !m_wndtoolbar.LoadToolBar(IDR_TOOLBAR2) )
{
TRACE0("failed to create toolbar\n");
return;
}
m_wndtoolbar.ShowWindow(SW_SHOW);
RepositionBars(AFX_IDW_CONTROLBAR_FIRST, AFX_IDW_CONTROLBAR_LAST, 0);
}

GeneralScrolling dialog. Pin
rrrado18-Aug-03 21:59
rrrado18-Aug-03 21:59 
GeneralRe: Scrolling dialog. Pin
Iain Clarke, Warrior Programmer18-Aug-03 23:00
Iain Clarke, Warrior Programmer18-Aug-03 23:00 
GeneralRe: Scrolling dialog. Pin
rrrado18-Aug-03 23:18
rrrado18-Aug-03 23:18 
GeneralRe: Scrolling dialog. Pin
rrrado18-Aug-03 23:26
rrrado18-Aug-03 23:26 
GeneralRe: Scrolling dialog. Pin
Iain Clarke, Warrior Programmer18-Aug-03 23:30
Iain Clarke, Warrior Programmer18-Aug-03 23:30 
General- Presentation program - Pin
JensB18-Aug-03 21:38
JensB18-Aug-03 21:38 
GeneralRe: - Presentation program - Pin
Johnny ²19-Aug-03 1:13
Johnny ²19-Aug-03 1:13 
GeneralWrite Compact Flash. Pin
Paolomat18-Aug-03 21:11
Paolomat18-Aug-03 21:11 
QuestionHow to overlap full-screen DX window Pin
freaky_NL18-Aug-03 20:48
freaky_NL18-Aug-03 20:48 
AnswerRe: How to overlap full-screen DX window Pin
Anonymous20-Aug-03 2:58
Anonymous20-Aug-03 2:58 
GeneralCOleDropTarget::Register() Fails Pin
Possum18-Aug-03 19:19
Possum18-Aug-03 19:19 
GeneralInvoking On-Demand virus scan programmatically Pin
abhinarulkar18-Aug-03 18:20
abhinarulkar18-Aug-03 18:20 
GeneralCompiled .HLP files show help for Internet Explorer Pin
Terry O'Nolley18-Aug-03 16:35
Terry O'Nolley18-Aug-03 16:35 
GeneralFlickering Web Browser Control When Resizing OnSize (CFormView).. Please help! Pin
Varun Shoor18-Aug-03 16:02
Varun Shoor18-Aug-03 16:02 
GeneralMDI problem or Memory problem Pin
Benjamintee18-Aug-03 15:44
Benjamintee18-Aug-03 15:44 
GeneralRe: MDI problem or Memory problem Pin
John M. Drescher18-Aug-03 16:37
John M. Drescher18-Aug-03 16:37 
GeneralRe: MDI problem or Memory problem Pin
Anonymous19-Aug-03 21:11
Anonymous19-Aug-03 21:11 

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.