Click here to Skip to main content
15,896,269 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
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 
Cool | :cool:
Actually, all I needed to do was move my code into the OnInitialUpdate function. I didn't need to call create!

void CSacmanSetupApplicationView::OnInitialUpdate()
{
	CFormView::OnInitialUpdate();
	GetParentFrame()->RecalcLayout();
	ResizeParentToFit();

		// Build the image list which will hold the icons
	// we want to use in the lists and trees.

	CRect treeRect;
	CImageList *pImageList=new CImageList;	
	My object is fine at this point	
		if(this->m_ctrlSetupTree)
		{
			
			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.
			
Had to make sure it was displaying an object with data in it..	

m_ctrlSetupTree.SetCanalManagerPointer(this->m_oCanalManager.GetCanalManager());


Thanks for the help! Big Grin | :-D
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 
GeneralRe: Serial Port Pin
Paddy6-May-03 10:16
Paddy6-May-03 10:16 
GeneralRe: Serial Port Pin
JohnnyG6-May-03 15:21
JohnnyG6-May-03 15:21 
GeneralRe: Serial Port Pin
Paddy7-May-03 5:43
Paddy7-May-03 5:43 
GeneralRe: Serial Port Pin
Dr-Kuulun6-May-03 21:24
Dr-Kuulun6-May-03 21:24 
GeneralRe: Serial Port Pin
Paddy7-May-03 5:48
Paddy7-May-03 5:48 
QuestionWhat is best way to replace CDao classes? Pin
slacker6-May-03 7:56
slacker6-May-03 7:56 

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.