Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
H

hellogany

@hellogany
About
Posts
77
Topics
38
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Reg Excel Automation in SDI
    H hellogany

    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

    C / C++ / MFC help testing tools

  • Reg Excel Automation in SDI
    H hellogany

    Hi 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...

    C / C++ / MFC help testing tools

  • Remote Computer access
    H hellogany

    hi 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.

    C / C++ / MFC help

  • data between forms sdi
    H hellogany

    Hi 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

    C / C++ / MFC database tutorial

  • OnInitialUpdate in FormView
    H hellogany

    Hi 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?

    C / C++ / MFC help question announcement

  • SDI List Control example
    H hellogany

    thanks for ur suggestions

    C / C++ / MFC tutorial

  • SDI List Control example
    H hellogany

    Well 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

    C / C++ / MFC tutorial

  • SDI List Control example
    H hellogany

    When 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 ?

    C / C++ / MFC tutorial

  • SDI List Control example
    H hellogany

    Hi This is the error i get Debug Assertion Error f:\rtm\vctools\vc7libs\ship\atlmfc\include\afxcmn2.inl Line 113

    C / C++ / MFC tutorial

  • SDI List Control example
    H hellogany

    Hi 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.

    C / C++ / MFC tutorial

  • SDI List Control example
    H hellogany

    Ya i m using mFC I m tryin to use List Control in Form View. I m gettin error..Thts y..

    C / C++ / MFC tutorial

  • SDI List Control example
    H hellogany

    Hi can anyone give me some examples or tutorial for list control in SDI FormViews I m bugged of this..

    C / C++ / MFC tutorial

  • Form View Properties in SplitterWnd
    H hellogany

    Hi 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 ...

    C / C++ / MFC help

  • List control in FormView
    H hellogany

    Hi 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?

    C / C++ / MFC

  • List control in FormView
    H hellogany

    Assertion Error!!! Where u writing the code OnCreate or OnShowWindow()????

    C / C++ / MFC

  • List control in FormView
    H hellogany

    Hi While Debugging i m gettin error in m_listctrl.SetExtendedStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES); code itself

    C / C++ / MFC

  • List control in FormView
    H hellogany

    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);

    C / C++ / MFC

  • List control in FormView
    H hellogany

    Hi 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

    C / C++ / MFC

  • Global Variables in SDI
    H hellogany

    Hi Thanks i solved it...

    C / C++ / MFC tutorial question

  • Global Variables in SDI
    H hellogany

    m_txtlog=g_MyVariable; UpdateData(FALSE); m_txlog is the edit control i am using the above code in oncreate function...

    C / C++ / MFC tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups