Click here to Skip to main content
15,902,884 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralVoice recorder Pin
Michae_geffen13-Jun-04 8:27
Michae_geffen13-Jun-04 8:27 
QuestionRunning in Background? Pin
DanYELL13-Jun-04 7:28
DanYELL13-Jun-04 7:28 
AnswerRe: Running in Background? Pin
Ravi Bhavnani13-Jun-04 8:02
professionalRavi Bhavnani13-Jun-04 8:02 
GeneralRe: Running in Background? Pin
gamitech13-Jun-04 9:48
gamitech13-Jun-04 9:48 
GeneralGetting what's been clicked in a CTreeCtrl Pin
kfaday13-Jun-04 7:11
kfaday13-Jun-04 7:11 
GeneralRe: Getting what's been clicked in a CTreeCtrl Pin
Ravi Bhavnani13-Jun-04 7:56
professionalRavi Bhavnani13-Jun-04 7:56 
GeneralRe: Getting what's been clicked in a CTreeCtrl Pin
kfaday13-Jun-04 9:45
kfaday13-Jun-04 9:45 
GeneralRe: Getting what's been clicked in a CTreeCtrl Pin
Sumit Kapoor13-Jun-04 20:32
Sumit Kapoor13-Jun-04 20:32 
HI..Dear..
You need to trap event selChanged & in that even you can get value.. e.g.: I'm traping tree in view by using following code..you can do simmilar
bye

void CLeftFirstTreeView::OnSelchanged(NMHDR* pNMHDR, LRESULT* pResult)
{
NM_TREEVIEW* pNMTreeView = (NM_TREEVIEW*)pNMHDR;

CString aa;
aa.Format("%s", GetTreeCtrl( ).GetItemText(pNMTreeView->itemNew.hItem ));
MessageBox(aa);
}

Tha's it.. you can do this in tree control by traping same event...
bye again

---Sumit Kapoor---
GeneralCreating Access file with the password Pin
Anonymous13-Jun-04 5:35
Anonymous13-Jun-04 5:35 
QuestionHow can I use and compile my project that contain 16 bit API? Pin
Behzad Ebrahimi13-Jun-04 4:26
Behzad Ebrahimi13-Jun-04 4:26 
AnswerRe: How can I use and compile my project that contain 16 bit API? Pin
John R. Shaw13-Jun-04 11:04
John R. Shaw13-Jun-04 11:04 
Generalmfc: load a cursor resource Pin
kfaday13-Jun-04 4:19
kfaday13-Jun-04 4:19 
GeneralRe: mfc: load a cursor resource Pin
Dominik Reichl13-Jun-04 5:04
Dominik Reichl13-Jun-04 5:04 
GeneralRe: mfc: load a cursor resource Pin
kfaday13-Jun-04 5:24
kfaday13-Jun-04 5:24 
GeneralRe: mfc: load a cursor resource Pin
Dominik Reichl13-Jun-04 5:59
Dominik Reichl13-Jun-04 5:59 
GeneralRe: mfc: load a cursor resource Pin
kfaday13-Jun-04 7:08
kfaday13-Jun-04 7:08 
GeneralRe: mfc: load a cursor resource Pin
Johan Rosengren13-Jun-04 9:55
Johan Rosengren13-Jun-04 9:55 
GeneralRe: mfc: load a cursor resource Pin
kfaday13-Jun-04 10:29
kfaday13-Jun-04 10:29 
GeneralRe: mfc: load a cursor resource Pin
Johan Rosengren13-Jun-04 19:46
Johan Rosengren13-Jun-04 19:46 
QuestionDebug Assertion Failed, what the f****???? Pin
Anonymous13-Jun-04 3:43
Anonymous13-Jun-04 3:43 
AnswerRe: Debug Assertion Failed, what the f****???? Pin
valikac13-Jun-04 5:53
valikac13-Jun-04 5:53 
GeneralRe: Debug Assertion Failed, what the f****???? Pin
Anonymous13-Jun-04 6:54
Anonymous13-Jun-04 6:54 
GeneralRe: Debug Assertion Failed, what the f****???? Pin
Tim Smith13-Jun-04 9:58
Tim Smith13-Jun-04 9:58 
GeneralRe: Debug Assertion Failed, what the f****???? Pin
Johan Rosengren13-Jun-04 10:00
Johan Rosengren13-Jun-04 10:00 
AnswerRe: Debug Assertion Failed, what the f****???? Pin
John R. Shaw13-Jun-04 11:16
John R. Shaw13-Jun-04 11:16 

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.