Click here to Skip to main content
15,896,207 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionsending clist using writeprocessmemory Pin
Prasann Mayekar13-Jul-08 21:41
Prasann Mayekar13-Jul-08 21:41 
QuestionRe: sending clist using writeprocessmemory Pin
CPallini13-Jul-08 21:49
mveCPallini13-Jul-08 21:49 
AnswerRe: sending clist using writeprocessmemory Pin
Mark Salsbery14-Jul-08 6:25
Mark Salsbery14-Jul-08 6:25 
AnswerRe: sending clist using writeprocessmemory Pin
Stephen Hewitt14-Jul-08 14:55
Stephen Hewitt14-Jul-08 14:55 
Questionhow can i check whether the audio driver installed or not for my vc++ application? Pin
stewens13-Jul-08 20:11
stewens13-Jul-08 20:11 
AnswerRe: how can i check whether the audio driver installed or not for my vc++ application? Pin
Stephen Hewitt13-Jul-08 20:33
Stephen Hewitt13-Jul-08 20:33 
GeneralRe: how can i check whether the audio driver installed or not for my vc++ application? Pin
stewens13-Jul-08 22:09
stewens13-Jul-08 22:09 
Questionpopup dialog using tab controls Pin
ani_ikram13-Jul-08 20:09
ani_ikram13-Jul-08 20:09 
i have 3 tabs on tab control
when i click on one tab i dialogbox became show
but when i click on next tab new dialog became show but preveious
does not hide

i am using ShowWindow(0) and i have also try EndDialog(0)

here is my code


void CBargraphDlg::OnSelchangeTab1(NMHDR* pNMHDR, LRESULT* pResult)
{

CTabCtrl *c =(CTabCtrl*)GetDlgItem(IDC_TAB1);
int s=c->GetCurSel();
t=new txt;
t->Create(IDD_TXT);
bargraph=new graph;
bargraph->Create(IDD_GRAPH_DIALOG);

t2=new txt2;
t2->Create(IDD_TXT2);
if(s==0)
{
t2->ShowWindow(SW_HIDE);
bargraph->ShowWindow(SW_HIDE);
t->ShowWindow(1);

}
else if(s==1)
{


bargraph->ShowWindow(1);
t->ShowWindow(0);
t2->EndDialog(0);
//t2->ShowWindow(0);



}
else if(s==2)
{


t2->ShowWindow(1);
t->ShowWindow(0);
bargraph->ShowWindow(0);
}

*pResult = 0;
}
AnswerRe: popup dialog using tab controls Pin
sudhir_Kumar13-Jul-08 20:28
sudhir_Kumar13-Jul-08 20:28 
AnswerRe: popup dialog using tab controls Pin
SandipG 13-Jul-08 21:02
SandipG 13-Jul-08 21:02 
GeneralRe: popup dialog using tab controls Pin
Mark Salsbery14-Jul-08 6:28
Mark Salsbery14-Jul-08 6:28 
QuestionWhat is the correct method to rename a VC6.0 project? Pin
fantasy121513-Jul-08 19:47
fantasy121513-Jul-08 19:47 
AnswerRe: What is the correct method to rename a VC6.0 project? Pin
sudhir_Kumar13-Jul-08 19:52
sudhir_Kumar13-Jul-08 19:52 
GeneralRe: What is the correct method to rename a VC6.0 project? Pin
fantasy121513-Jul-08 20:26
fantasy121513-Jul-08 20:26 
GeneralRe: What is the correct method to rename a VC6.0 project? Pin
sudhir_Kumar13-Jul-08 20:30
sudhir_Kumar13-Jul-08 20:30 
AnswerRe: What is the correct method to rename a VC6.0 project? Pin
ThatsAlok13-Jul-08 20:12
ThatsAlok13-Jul-08 20:12 
Questioncombo box help Pin
projectip13-Jul-08 19:40
projectip13-Jul-08 19:40 
AnswerRe: combo box help Pin
projectip13-Jul-08 20:37
projectip13-Jul-08 20:37 
AnswerRe: combo box help Pin
SandipG 13-Jul-08 20:50
SandipG 13-Jul-08 20:50 
GeneralRe: combo box help Pin
projectip14-Jul-08 0:57
projectip14-Jul-08 0:57 
QuestionCreating enteries in add or remove programs Pin
VCProgrammer13-Jul-08 19:39
VCProgrammer13-Jul-08 19:39 
AnswerRe: Creating enteries in add or remove programs Pin
ThatsAlok13-Jul-08 20:15
ThatsAlok13-Jul-08 20:15 
Questioni want to know ACM problom's answer or tip. Pin
Jung Seng Won13-Jul-08 19:33
Jung Seng Won13-Jul-08 19:33 
AnswerRe: i want to know ACM problom's answer or tip. Pin
Alan Balkany14-Jul-08 5:09
Alan Balkany14-Jul-08 5:09 
QuestionAdvantages of ShellExecuteEx over CreateProcess Pin
V K 213-Jul-08 19:17
V K 213-Jul-08 19:17 

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.