Click here to Skip to main content
15,914,111 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: C++ Command line Pin
l a u r e n5-Mar-01 10:06
l a u r e n5-Mar-01 10:06 
GeneralTAPI compatibility issue in Win2000 Pin
Kelly Yao5-Mar-01 9:26
Kelly Yao5-Mar-01 9:26 
GeneralRe: TAPI compatibility issue in Win2000 Pin
l a u r e n5-Mar-01 9:46
l a u r e n5-Mar-01 9:46 
GeneralActiveX Control Wrapper/coclasses Pin
James Bush5-Mar-01 6:29
James Bush5-Mar-01 6:29 
Generalcmd Pin
5-Mar-01 6:26
suss5-Mar-01 6:26 
GeneralRe: cmd Pin
5-Mar-01 8:07
suss5-Mar-01 8:07 
GeneralRe: cmd Pin
l a u r e n5-Mar-01 10:01
l a u r e n5-Mar-01 10:01 
QuestionHow should I hide or remove tabs in a property sheet without getting the PC crashed? Pin
Joan M5-Mar-01 4:58
professionalJoan M5-Mar-01 4:58 
I have to implement two working ways, and I've thought in the property sheet, as you can see in the code below, I'm trying to add and remove property pages, but this way don't works.

Note:
i beg your pardon because of my english and because this can be like a big mess: this is an industrial keyboard...

Thank you in advance.


if (bManual)
{
if ((this->GetActivePage() == &this->m_ProgramaNCExecPPDlg) || (this->GetActivePage() == &this->m_ProgramaNCSimulacioPPDlg))
{
this->AddPage(&this->m_ProgramaNCEdicioPPDlg);

this->RemovePage(&this->m_ProgramaNCExecPPDlg);

this->RemovePage(&this->m_ProgramaNCSimulacioPPDlg);

this->m_ProgramaNCExecPPDlg.Create(IDD_PROGRAMA_EDICIO_PP,this);
this->SetActivePage(&this->m_ProgramaNCEdicioPPDlg);

this->m_ProgramaNCEdicioPPDlg.SetTextProgramaNCE(this->m_ProgramaNCDoc.GetTextProgramaNCE());
}
}
else
{
if (this->GetActivePage() == &this->m_ProgramaNCEdicioPPDlg)
{
this->AddPage(&this->m_ProgramaNCExecPPDlg);

this->AddPage(&this->m_ProgramaNCSimulacioPPDlg);

this->RemovePage(&this->m_ProgramaNCEdicioPPDlg);

this->SetActivePage(&this->m_ProgramaNCExecPPDlg);

this->m_ProgramaNCExecPPDlg.SetTextProgramaNCF(this->m_ProgramaNCDoc.GetTextProgramaNCF());
}
}
QuestionHow do I write a file to an edit ctrl or to other ctrl? Pin
5-Mar-01 4:09
suss5-Mar-01 4:09 
AnswerRe: How do I write a file to an edit ctrl or to other ctrl? Pin
l a u r e n5-Mar-01 4:35
l a u r e n5-Mar-01 4:35 
GeneralRe: How do I write a file to an edit ctrl or to other ctrl? Pin
Chris Losinger5-Mar-01 4:55
professionalChris Losinger5-Mar-01 4:55 
GeneralRe: How do I write a file to an edit ctrl or to other ctrl? Pin
l a u r e n5-Mar-01 10:09
l a u r e n5-Mar-01 10:09 
GeneralBulk operations with Long binary. HELP Pin
Alex Barzovski5-Mar-01 3:57
Alex Barzovski5-Mar-01 3:57 
GeneralRe: Bulk operations with Long binary. HELP Pin
l a u r e n5-Mar-01 4:33
l a u r e n5-Mar-01 4:33 
GeneralRe: Bulk operations with Long binary. HELP Pin
Alex Barzovski5-Mar-01 13:16
Alex Barzovski5-Mar-01 13:16 
GeneralRe: Bulk operations with Long binary. HELP Pin
Alex Barzovski5-Mar-01 13:17
Alex Barzovski5-Mar-01 13:17 
GeneralWindows Driver Development Pin
.::RockNix::.5-Mar-01 0:03
.::RockNix::.5-Mar-01 0:03 
GeneralRe: Windows Driver Development Pin
l a u r e n5-Mar-01 2:41
l a u r e n5-Mar-01 2:41 
GeneralRe: Windows Driver Development Pin
MickAB5-Mar-01 3:12
MickAB5-Mar-01 3:12 
GeneralRe: Windows Driver Development Pin
.::RockNix::.5-Mar-01 4:37
.::RockNix::.5-Mar-01 4:37 
GeneralRe: Windows Driver Development Pin
MickAB5-Mar-01 5:57
MickAB5-Mar-01 5:57 
GeneralRe: Windows Driver Development Pin
.::RockNix::.5-Mar-01 21:29
.::RockNix::.5-Mar-01 21:29 
GeneralRe: Windows Driver Development Pin
MickAB6-Mar-01 1:17
MickAB6-Mar-01 1:17 
GeneralRe: Windows Driver Development Pin
.::RockNix::.6-Mar-01 4:31
.::RockNix::.6-Mar-01 4:31 
GeneralRe: Windows Driver Development Pin
MickAB6-Mar-01 5:50
MickAB6-Mar-01 5:50 

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.