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

C / C++ / MFC

 
Questionpossible to link and run with .lib file without .dll file? Pin
George_George24-May-06 21:15
George_George24-May-06 21:15 
AnswerRe: possible to link and run with .lib file without .dll file? Pin
NiceNaidu24-May-06 21:40
NiceNaidu24-May-06 21:40 
QuestionCTreeCtrl: Index of and item from parent Pin
Sarath C24-May-06 21:02
Sarath C24-May-06 21:02 
AnswerRe: CTreeCtrl: Index of and item from parent Pin
Nibu babu thomas24-May-06 21:08
Nibu babu thomas24-May-06 21:08 
GeneralRe: CTreeCtrl: Index of and item from parent Pin
Sarath C24-May-06 21:14
Sarath C24-May-06 21:14 
GeneralRe: CTreeCtrl: Index of and item from parent Pin
Hamid_RT24-May-06 21:37
Hamid_RT24-May-06 21:37 
GeneralOT (Off Topic) Pin
Nibu babu thomas24-May-06 22:29
Nibu babu thomas24-May-06 22:29 
AnswerRe: CTreeCtrl: Index of and item from parent Pin
Steve Echols24-May-06 21:34
Steve Echols24-May-06 21:34 
Try this (haven't tested it, might need to replace CTreeViewCtrl with CTreeCtrl if using MFC):

int GetChildIndex(CTreeViewCtrl* pTree, HTREEITEM hParent, HTREEITEM hFindChild)<br />
{<br />
	HTREEITEM hChild = pTree->GetChildItem(hParent);<br />
<br />
	int index = 0;<br />
<br />
	while (hChild && hChild != hFindChild)<br />
	{<br />
		hChild = pTree->GetNextSiblingItem(hChild);<br />
		index++;<br />
	}<br />
<br />
	if (hChild)<br />
		return index;<br />
	else<br />
		retun -1;<br />
}<br />



- S
50 cups of coffee and you know it's on!
QuestionHelp me??? How to transfer file(data) from Linux to Windows Pin
bulgaa24-May-06 20:41
bulgaa24-May-06 20:41 
AnswerRe: Help me??? How to transfer file(data) from Linux to Windows Pin
_AnsHUMAN_ 24-May-06 20:44
_AnsHUMAN_ 24-May-06 20:44 
AnswerRe: Help me??? How to transfer file(data) from Linux to Windows Pin
Garth J Lancaster24-May-06 20:47
professionalGarth J Lancaster24-May-06 20:47 
AnswerRe: Help me??? How to transfer file(data) from Linux to Windows [modified] Pin
_anil_24-May-06 21:35
_anil_24-May-06 21:35 
Questionlife-cycle of a typical MFC program Pin
Scorpio24-May-06 20:40
Scorpio24-May-06 20:40 
AnswerRe: life-cycle of a typical MFC program Pin
Nibu babu thomas24-May-06 21:00
Nibu babu thomas24-May-06 21:00 
AnswerRe: life-cycle of a typical MFC program Pin
NiceNaidu24-May-06 21:09
NiceNaidu24-May-06 21:09 
QuestionMFC Slider Direction Pin
ttthearty24-May-06 20:37
ttthearty24-May-06 20:37 
AnswerRe: MFC Slider Direction Pin
_AnsHUMAN_ 24-May-06 20:59
_AnsHUMAN_ 24-May-06 20:59 
GeneralRe: MFC Slider Direction Pin
ttthearty24-May-06 21:10
ttthearty24-May-06 21:10 
GeneralRe: MFC Slider Direction Pin
_AnsHUMAN_ 24-May-06 21:53
_AnsHUMAN_ 24-May-06 21:53 
GeneralRe: MFC Slider Direction [modified] Pin
_AnsHUMAN_ 24-May-06 21:58
_AnsHUMAN_ 24-May-06 21:58 
GeneralRe: MFC Slider Direction [modified] Pin
ttthearty24-May-06 22:03
ttthearty24-May-06 22:03 
GeneralRe: MFC Slider Direction [modified] Pin
_AnsHUMAN_ 24-May-06 22:08
_AnsHUMAN_ 24-May-06 22:08 
AnswerRe: MFC Slider Direction Pin
Hamid_RT24-May-06 21:45
Hamid_RT24-May-06 21:45 
Questiontemplates Pin
vivek.s.vivek24-May-06 20:23
vivek.s.vivek24-May-06 20:23 
AnswerRe: templates [modified] Pin
Nibu babu thomas24-May-06 20:36
Nibu babu thomas24-May-06 20:36 

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.