Click here to Skip to main content
16,008,010 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to view the messege queue of a thread? Pin
CPallini3-Dec-08 1:58
mveCPallini3-Dec-08 1:58 
GeneralRe: How to view the messege queue of a thread? Pin
Joseph Marzbani3-Dec-08 12:00
Joseph Marzbani3-Dec-08 12:00 
GeneralRe: How to view the messege queue of a thread? Pin
CPallini3-Dec-08 21:25
mveCPallini3-Dec-08 21:25 
QuestionRe Question about startup Pin
MsmVc2-Dec-08 22:23
MsmVc2-Dec-08 22:23 
AnswerRe: Re Question about startup Pin
David Crow3-Dec-08 4:52
David Crow3-Dec-08 4:52 
QuestionInternet explorer script error. Pin
Le@rner2-Dec-08 20:47
Le@rner2-Dec-08 20:47 
AnswerRe: Internet explorer script error. Pin
Chandrasekharan P2-Dec-08 22:15
Chandrasekharan P2-Dec-08 22:15 
Questionpls help me Pin
T.SREENIVASA CHARY2-Dec-08 20:10
T.SREENIVASA CHARY2-Dec-08 20:10 
Hi,
I made CListCtrl application which is used in column '0' checkboxes,column '1' comboboxes.when check combo will place,when you uncheck combo disappear.its working fine using onItemChanged() function.but problem is when user do double click check box becomes uncheck but combo placing in column '1' instead of disappear .am placing checkboxes dynamically using LVS_EX_CHECKBOXES.for this i need use dblclick event,then i should i write code?please help me in this.

Code Snippet:
NM_LISTVIEW* pNMListView = (NM_LISTVIEW*)pNMHDR;
int index=0;
int i;
index=pNMListView->iItem;
CStringList pComboList;
pComboList.AddTail("Sonu");
pComboList.AddTail("Sunny");
pComboList.AddTail("Cheechaa");
pComboList.AddTail("Srinu");
for(i=0;i < m_List.GetItemCount();i++)
{
bChecked=m_List.GetCheck(i);
CString strTemp;
strTemp.Empty();
strTemp.Format("%s",m_List.GetItemText(m_List.iRowIndex,1));
if(strTemp.IsEmpty())
{
if((i==m_List.iRowIndex) && (bChecked==1))
{
m_List.ShowInPlaceList(m_List.iRowIndex,1,pComboList,"");
//ShowinPlaceList is used for to place combo box
}
}
else
{
if(i==m_List.iRowIndex && bChecked==0) m_List.SetItemText(m_List.iRowIndex,1,"srinu");
}
}
*pResult = 0;

Regards,
Govind Laugh | :laugh:
QuestionProblem with getting hard disk values Pin
VCProgrammer2-Dec-08 20:06
VCProgrammer2-Dec-08 20:06 
AnswerRe: Problem with getting hard disk values Pin
SandipG 2-Dec-08 22:02
SandipG 2-Dec-08 22:02 
AnswerRe: Problem with getting hard disk values Pin
Stuart Dootson2-Dec-08 22:05
professionalStuart Dootson2-Dec-08 22:05 
GeneralRe: Problem with getting hard disk values Pin
VCProgrammer3-Dec-08 18:52
VCProgrammer3-Dec-08 18:52 
GeneralRe: Problem with getting hard disk values Pin
Stuart Dootson3-Dec-08 22:10
professionalStuart Dootson3-Dec-08 22:10 
Questionhow to display tooltip on popup menu when mouse moves over popup menu? Pin
puppya2-Dec-08 19:35
puppya2-Dec-08 19:35 
AnswerRe: how to display tooltip on popup menu when mouse moves over popup menu? Pin
Chandrasekharan P2-Dec-08 22:55
Chandrasekharan P2-Dec-08 22:55 
AnswerRe: how to display tooltip on popup menu when mouse moves over popup menu? Pin
Jijo.Raj3-Dec-08 6:44
Jijo.Raj3-Dec-08 6:44 
QuestionDisable Restoredown button Pin
Kiran Pinjala2-Dec-08 19:27
Kiran Pinjala2-Dec-08 19:27 
AnswerRe: Disable Restoredown button Pin
Stuart Dootson2-Dec-08 21:35
professionalStuart Dootson2-Dec-08 21:35 
AnswerRe: Disable Restoredown button Pin
Code-o-mat2-Dec-08 21:45
Code-o-mat2-Dec-08 21:45 
AnswerRe: Disable Restoredown button Pin
SandipG 2-Dec-08 21:55
SandipG 2-Dec-08 21:55 
AnswerRe: Disable Restoredown button Pin
Jijo.Raj3-Dec-08 21:25
Jijo.Raj3-Dec-08 21:25 
QuestionSpace bar problem.......... Pin
shaina22312-Dec-08 19:19
shaina22312-Dec-08 19:19 
AnswerRe: Space bar problem.......... Pin
Code-o-mat2-Dec-08 21:23
Code-o-mat2-Dec-08 21:23 
Questionmulti midea timers with windows timer Pin
22082-Dec-08 16:56
22082-Dec-08 16:56 
AnswerRe: multi midea timers with windows timer Pin
Stuart Dootson2-Dec-08 21:11
professionalStuart Dootson2-Dec-08 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.