Click here to Skip to main content
16,012,061 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralWhy won't my CTreeCtrl work in my SDI Pin
adonisv6-May-03 11:43
adonisv6-May-03 11:43 
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
valikac6-May-03 12:46
valikac6-May-03 12:46 
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
adonisv6-May-03 13:35
adonisv6-May-03 13:35 
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
valikac6-May-03 16:16
valikac6-May-03 16:16 
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
Tibor Blazko6-May-03 23:57
Tibor Blazko6-May-03 23:57 
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
Michael Dunn6-May-03 17:27
sitebuilderMichael Dunn6-May-03 17:27 
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
Chris Richardson6-May-03 18:21
Chris Richardson6-May-03 18:21 
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
adonisv7-May-03 10:23
adonisv7-May-03 10:23 
I'm calling the following code. But it seems that my hWnd is still null.

CRect treeRect;
treeRect.NormalizeRect();
CImageList *pImageList=new CImageList;
	
	
if(this->m_ctrlSetupTree.Create(WS_VISIBLE,treeRect,this,IDC_SETUP_TREE))
	{
		Beep(999,99);
		int i, icons=0;
		for (icons=0; RCanalTree::m_icons[icons]; icons++) {}
		pImageList->Create(16, 16, TRUE, icons,6);
		for (i=0; RCanalTree::m_icons[i]; i++)
		{
			pImageList->Add(AfxGetApp()->LoadIcon(RCanalTree::m_icons[i]));
		}
		// Assign the image list to all list and tree controls
		// so that icons can be used.	
		m_ctrlSetupTree.SetImageList(pImageList,TVSIL_NORMAL);
		
		// Instruct the Canal Manager to create a new system based on the information
		// in the Canal Structures database.
		
		
		if(this->m_oCanalManager.CreateNewDataStructures())
		{
			// Based on the data structures created in memory by the Canal Manager,
			// populate the setup tree.
			//this->m_ctrlSetupTree.Populate();
		}
		
	}
}


Cry | :((
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
Chris Richardson7-May-03 10:33
Chris Richardson7-May-03 10:33 
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
adonisv7-May-03 11:11
adonisv7-May-03 11:11 
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
Chris Richardson7-May-03 11:16
Chris Richardson7-May-03 11:16 
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
adonisv8-May-03 14:42
adonisv8-May-03 14:42 
GeneralRe: Why won't my CTreeCtrl work in my SDI Pin
Chris Richardson8-May-03 15:52
Chris Richardson8-May-03 15:52 
GeneralWow I got it workin'!!! Pin
adonisv8-May-03 18:29
adonisv8-May-03 18:29 
Generalparameter of glutInit Pin
aguest6-May-03 10:33
aguest6-May-03 10:33 
GeneralRe: parameter of glutInit Pin
Joaquín M López Muñoz6-May-03 11:11
Joaquín M López Muñoz6-May-03 11:11 
GeneralRe: parameter of glutInit Pin
aguest6-May-03 11:38
aguest6-May-03 11:38 
GeneralRe: parameter of glutInit Pin
Joaquín M López Muñoz6-May-03 12:05
Joaquín M López Muñoz6-May-03 12:05 
GeneralRe: parameter of glutInit Pin
aguest7-May-03 10:21
aguest7-May-03 10:21 
GeneralSDI and multiple views Pin
#realJSOP6-May-03 9:06
professional#realJSOP6-May-03 9:06 
GeneralRe: SDI and multiple views Pin
Alin Negru6-May-03 21:18
Alin Negru6-May-03 21:18 
General::LoadImage() out of memory error Pin
Iceman6-May-03 8:25
Iceman6-May-03 8:25 
GeneralRe: ::LoadImage() out of memory error Pin
AlexO6-May-03 10:21
AlexO6-May-03 10:21 
GeneralSerial Port Pin
Paddy6-May-03 8:24
Paddy6-May-03 8:24 
GeneralRe: Serial Port Pin
Sean Cundiff6-May-03 8:36
Sean Cundiff6-May-03 8: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.