I m gettin type redefinition error, Problem while using excel.h and excel.cpp file. MoreOver These two files are not generated automatically, i used in VC6 and get that files and copied these files to my current project in vs2005. The file supports in dialog based projects but not in SDI Regards Gany
hellogany
Posts
-
Reg Excel Automation in SDI -
Reg Excel Automation in SDIHi I am using SDI in windows explorer style. The right view contains a formview and left view consits of treeview. In formview i m tryin to transfer the list control data to Excel sheet. Im using excel automation ... But its throwing run time error. Can Anyone Help me...
-
Remote Computer accesshi i need to connect to remote computer by providing the IP Address User name Password. With this help i will be accessing files. Kindly Provide me a way for connecting it.
-
data between forms sdiHi how to transfer datas from one form to another form in sdi application.. I am using splitter window type application for my project. and is ther any way to trigger an button click event... Regard Gany
-
OnInitialUpdate in FormViewHi I m developin an application with treeview on left side and formview on right side(Splitterwnd). Whenevr a user cliks an itme in treeview a form window will appear on right side. My Problem is that OnInitialUpdate Fn is not working in the formview... Due to this i face a problem of using the list control in the application.. But in different project of normal SDi, the Initial Update Funtion works fine.. Can Any One Suggest me a Solution?
-
SDI List Control examplethanks for ur suggestions
-
SDI List Control exampleWell i m also havinn other control such as button,combo box,date time picker etc., Thts y i m going to formview rather than listview Thanks Gany
-
SDI List Control exampleWhen i try to debug , its gettin error on the below line in afxcmn2.dll AFXCMN_INLINE DWORD CListCtrl::SetExtendedStyle(DWORD dwNewStyle) { ASSERT(::IsWindow(m_hWnd)); return (DWORD) ::SendMessage(m_hWnd, LVM_SETEXTENDEDLISTVIEWSTYLE, 0, (LPARAM) dwNewStyle); } My Doubt is Can we drag the list control icon from the tool box and put in form view right.. Is there Any diference btwn the way of using list control in dialog box and form view?? Any Propetries Need to Be changed ?
-
SDI List Control exampleHi This is the error i get Debug Assertion Error f:\rtm\vctools\vc7libs\ship\atlmfc\include\afxcmn2.inl Line 113
-
SDI List Control exampleHi Sorry for not explaining the problem.. Actually i m havin an application in windows explorer view. Left view contains a tree view with various items, Upon clicking an item in treeview , a form view appears in right window. In one of the form view i m using an list control .. I m trying the insert the column name in OnshowWindow or in Oncreate() windows. But both of them throws assertion error. Kindly go through the below code.. m_listctrl.SetExtendedStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES); CRect rect; m_listctrl.GetClientRect(&rect); int ctl=rect.Width()/10; m_listctrl.InsertColumn(0,"ORDERNO",LVCFMT_LEFT,ctl); m_listctrl.InsertColumn(1,"MOLDNO",LVCFMT_LEFT,ctl); m_listctrl.InsertColumn(2,"OD TYPE",LVCFMT_LEFT,ctl); m_listctrl.InsertColumn(3,"ESTAB DATE",LVCFMT_LEFT,ctl); Is ther property of the form view or the list control to be changed?? Any solutions will be highly appreciated.
-
SDI List Control exampleYa i m using mFC I m tryin to use List Control in Form View. I m gettin error..Thts y..
-
SDI List Control exampleHi can anyone give me some examples or tutorial for list control in SDI FormViews I m bugged of this..
-
Form View Properties in SplitterWndHi What all the properties to be changed while creating a FormView in splitter wnd. I am trying to insert a list control in report view.. I couldnt able to set the columns names... I m setting it in Oncreate or OnShowWindow,but neithr works.. Help me ...
-
List control in FormViewHi I m using splitterwndow. left view consists of treeview with various items.. right view contains frame windows that appears when cliking an item in treeview.. With this type we can use our listcontrol right?
-
List control in FormViewAssertion Error!!! Where u writing the code OnCreate or OnShowWindow()????
-
List control in FormViewHi While Debugging i m gettin error in m_listctrl.SetExtendedStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES); code itself
-
List control in FormViewm_listctrl.SetExtendedStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES); CRect rect; m_listctrl.GetClientRect(&rect); int ctl=rect.Width()/10; m_listctrl.InsertColumn(0,"ORDERNO",LVCFMT_LEFT,ctl); m_listctrl.InsertColumn(1,"MOLDNO",LVCFMT_LEFT,ctl); m_listctrl.InsertColumn(2,"OD TYPE",LVCFMT_LEFT,ctl);
-
List control in FormViewHi All I am using list control(report style) in formview. I am trying to insert the columns in OnCreate (or) Show Window Function. But Neither Works .. Any Way to Solve it. Regards Gany
-
Global Variables in SDIHi Thanks i solved it...
-
Global Variables in SDIm_txtlog=g_MyVariable; UpdateData(FALSE); m_txlog is the edit control i am using the above code in oncreate function...