Click here to Skip to main content
15,899,475 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow can I get user accout details ? Pin
SherTeks17-May-08 0:03
SherTeks17-May-08 0:03 
AnswerRe: How can I get user accout details ? Pin
Hamid_RT17-May-08 0:51
Hamid_RT17-May-08 0:51 
QuestionHow can handle Enter key in TreeCtrl? Pin
Le@rner16-May-08 22:09
Le@rner16-May-08 22:09 
AnswerRe: How can handle Enter key in TreeCtrl? Pin
Naveen16-May-08 22:39
Naveen16-May-08 22:39 
GeneralRe: How can handle Enter key in TreeCtrl? Pin
Le@rner17-May-08 0:44
Le@rner17-May-08 0:44 
GeneralRe: How can handle Enter key in TreeCtrl? Pin
Hamid_RT17-May-08 0:47
Hamid_RT17-May-08 0:47 
GeneralRe: How can handle Enter key in TreeCtrl? Pin
Le@rner17-May-08 1:53
Le@rner17-May-08 1:53 
GeneralRe: How can handle Enter key in TreeCtrl? Pin
Hamid_RT17-May-08 4:13
Hamid_RT17-May-08 4:13 
Did you see MSDN see an example of MSDN:

HTREEITEM hCurSel = m_TreeCtrl.GetNextItem(TVI_ROOT, TVGN_CARET);

// report it to the user
if (hCurSel == NULL)
{
AfxMessageBox(_T("There is no selected item"));
}
else
{
CString str;
str.Format(_T("The currently selected item is \"%s\""),
(LPCTSTR)m_TreeCtrl.GetItemText(hCurSel));
AfxMessageBox((LPCTSTR)str);
}
GeneralRe: How can handle Enter key in TreeCtrl? Pin
Le@rner18-May-08 18:37
Le@rner18-May-08 18:37 
GeneralRe: How can handle Enter key in TreeCtrl? Pin
Hamid_RT18-May-08 19:11
Hamid_RT18-May-08 19:11 
Questionplz help me to write a program in c++ Pin
Qasimsha16-May-08 21:25
Qasimsha16-May-08 21:25 
AnswerRe: plz help me to write a program in c++ Pin
Michael Schubert16-May-08 22:11
Michael Schubert16-May-08 22:11 
AnswerRe: plz help me to write a program in c++ Pin
Michael Schubert16-May-08 22:32
Michael Schubert16-May-08 22:32 
GeneralRe: plz help me to write a program in c++ Pin
Iain Clarke, Warrior Programmer17-May-08 13:43
Iain Clarke, Warrior Programmer17-May-08 13:43 
JokeRe: plz help me to write a program in c++ Pin
Michael Schubert17-May-08 22:40
Michael Schubert17-May-08 22:40 
AnswerRe: plz help me to write a program in c++ Pin
Naveen16-May-08 22:41
Naveen16-May-08 22:41 
AnswerRe: plz help me to write a program in c++ Pin
Hamid_RT16-May-08 23:41
Hamid_RT16-May-08 23:41 
GeneralRe: plz help me to write a program in c++ Pin
Michael Schubert16-May-08 23:49
Michael Schubert16-May-08 23:49 
GeneralRe: plz help me to write a program in c++ Pin
Nelek17-May-08 0:04
protectorNelek17-May-08 0:04 
AnswerRe: plz help me to write a program in c++ Pin
Joan M17-May-08 1:00
professionalJoan M17-May-08 1:00 
GeneralRe: plz help me to write a program in c++ Pin
ThatsAlok6-Jul-09 20:51
ThatsAlok6-Jul-09 20:51 
GeneralDone buddy. Pin
CPallini17-May-08 2:33
mveCPallini17-May-08 2:33 
GeneralRe: Done buddy. Pin
Hamid_RT17-May-08 4:07
Hamid_RT17-May-08 4:07 
GeneralRe: Done buddy. Pin
CPallini17-May-08 5:40
mveCPallini17-May-08 5:40 
AnswerRe: plz help me to write a program in c++ Pin
Graham Shanks17-May-08 3:16
Graham Shanks17-May-08 3: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.