Thanks for your help I appreciate it. Can you tell me how to modify my config file into a single config using the config file in my post? Are you suggesting I copy all the settings from the other config files into the app.config? Thanks again
ttohme
Posts
-
Help with config file error -
Help with config file errorI'm not getting compile errors, I did switch to using ConfigurationManager. My problem, is that in the old config file I referenced multiple config file in the app.config which means I could access other projects config file setting in the main application, now VS 2005 is complaining the having multiple sections is not allowed. I need to know how can I modify my config file so it can still reference multiple configuration files. Thanks
-
Help with config file errorI have an app.config file that looks like this: This use to work fine in VS 2003, when I migrated to VS 2005 I started getting this error : " Configuration system failed to initialize" "Sections must only appear once per config file" Anyone knows how can I fix this??? Thanks in advance.
-
Changing the Header height in CListCtrlHi guys, I was wondering if anyone was successful in changing the height of a header in CListCtrl without Subclassing. I tried this recommeded method, but did not work as it keeps adjusting the column width and not the height void CTestListCtrl::SetHeadersHeight( int Height ) { HDITEM pHeaderItem; CHeaderCtrl* m_npheader = GetHeaderCtrl(); pHeaderItem.mask = HDI_TEXT | HDI_HEIGHT | HDI_FORMAT | HDI_ORDER; if( m_npheader->GetItem(0, &pHeaderItem) == FALSE ) return; pHeaderItem.cxy = Height; m_npheader->SetItem(0, &pHeaderItem); }
-
Cell Manipulation in CListCtrlHi, I am trying to manipulate a List Control at the cell level, trying to have let's say different cell width and heights in the same row. Can this be done, or does anyone know how to do it? THanks in advance.
-
DB2 QuestionHi, I have some very old database files that belong I think to DBASE or DB2 andI would like to convert the data into a text file. Does anyone know of some tools that can help do this.? THe files are extension .001 or .fil Thanks in adavance.
-
Grid Control using CListCtrl QuestionI'm already using Custom Draw, but I'm not sure on how to create row headers. Thanks
-
Grid Control using CListCtrl QuestionHi, I am trying to create a grid control using CListCtrl and my main problem right now is getting the control to display the cells in the first columns as button. I'm not sure if this is the right way, maybe there is a way to create header for the rows just like the columns. ANy ideas on how to do this. Thanks in advance.