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
Y

yogish293

@yogish293
About
Posts
34
Topics
21
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how compiler differentiates inline virtual function? [modified]
    Y yogish293

    Hi, suppose if i declare any virtual function as an inline how it differentiates from compile time ? Base class object pointer variable may reference to inherited object.How inline works in such case? thank you

    modified on Thursday, August 25, 2011 9:24 AM

    C / C++ / MFC question

  • How to create CMFCLinkCtrl hyperlink multiline?
    Y yogish293

    Hi i am using this control in my Application, There i don't have enough horizontal space show entire link. i wanted show that link in multiline. Is it possible?

    C / C++ / MFC tutorial question

  • How to find estimated time remaining ?
    Y yogish293

    for this always we should know how much size is already installed/copied right...?

    Algorithms design algorithms tutorial question

  • How to find estimated time remaining ?
    Y yogish293

    Hi, i have created one portable application,initially it will take several time to install on to pendrive(installer doing more on dll copy option), for that i want to show time remaining in my UI. can any one suggest me best algorithm to do this please

    Algorithms design algorithms tutorial question

  • How to set focus to newly added CTreeCtrl tree item?
    Y yogish293

    yes.. EnsureVisible is working if parent node is in Collapsed state.that time if make if (hParent != NULL) m_TreeCtrl.Expand(hParent, TVE_EXPAND); // Ensure the item is visible. m_TreeCtrl.EnsureVisible(hmyItem); like this its working,in my case parent is already expanded, i want to make perticular item visible once i add.

    C / C++ / MFC help data-structures tutorial question

  • How to set focus to newly added CTreeCtrl tree item?
    Y yogish293

    Let me try...

    C / C++ / MFC help data-structures tutorial question

  • How to set focus to newly added CTreeCtrl tree item?
    Y yogish293

    Hi i have created CTreeCtrl tree view,this is having list of children (parent child relationship) like normal windows explorer tree view.if i add any new item into the any of root node it will add as a last item of that root node.my problem is once i add new item to the root node,how to set focus to the added item also how to make it visible. 1.parent is already expanded, add new item to the parent. 2.parent is in collapsed state, add new item to the parent. In 1st case i am not able to make visible to the newly added item... please help me... thanks

    C / C++ / MFC help data-structures tutorial question

  • problem in setting font to CComboBox in XP?
    Y yogish293

    its created dynamically... problem was same what u told, size of the combobox was not expanded size, that was the issue.but my doubt is why this problem is coming only in xp?.... thanks..

    C / C++ / MFC help question

  • problem in setting font to CComboBox in XP?
    Y yogish293

    Hi this is my code LOGFONT lf; memset(&lf, 0, sizeof(LOGFONT)); lf.lfHeight = 15; lf.lfWeight = FW_REGULAR; m_fontRegular.CreateFontIndirect(&lf);//m_fontRegular is object of CFont m_ctrlComboBrowsers->SetFont(&m_fontRegular);// m_ctrlComboBrowsers is object of CComboBox i am adding some string to combobox, problem is in XP machine combobox's dropdown list is not showing.... please help me.

    C / C++ / MFC help question

  • how do i find all "src" attributes from frame object of html document?
    Y yogish293

    i have MSHTML::IHTMLDocument2Ptr pointer loaded with html document.there i can see all style sheets,images,iframe object. iframe object again will contain "src" attributes with source location. i want all iframe or frame objects "src" attributes from html document.... please help me

    COM question html help

  • how do i find all "src" attributes from frame object of html document?
    Y yogish293

    for(long nfram = 0; nfram < pColFrames->length ; nfram ++) { _variant_t vIdx(i, VT_I4); _variant_t vDisp; vDisp = pColFrames->item(&vIdx); if(vDisp.vt == VT_DISPATCH) { vDisp.pdispVal->QueryInterface(IID_IHTMLElement,(void**)&pElem); ...................//rest of operation } } but always if(vDisp.vt == VT_DISPATCH) will fail...means vDisp.vt become empty.

    C / C++ / MFC question html help

  • how do i find all "src" attributes from frame object of html document?
    Y yogish293

    _variant_t MSHTML::IHTMLFramesCollection2::item(VARIANT var); this is declaration of item function... there is no interface to get IHTMLElement...

    C / C++ / MFC question html help

  • how do i find all "src" attributes from frame object of html document?
    Y yogish293

    i have MSHTML::IHTMLDocument2Ptr pointer loaded with html document.there i can see all style sheets,images,iframe object. iframe object again will contain "src" attributes with source location. i want all iframe or frame objects "src" attributes from html document.... please help me

    C / C++ / MFC question html help

  • how do i save complete webpage in local disk?
    Y yogish293

    yes web browser having that interface to store in local drive. But how can i achieve same using vc++?...i can save html document of the link but some photos and style sheet all won't come ...

    C / C++ / MFC question tools help

  • how do i save complete webpage in local disk?
    Y yogish293

    i am writing small utility that will save webpage in local disk to view offline.. pls help me

    C / C++ / MFC question tools help

  • How do i find last created file in a specified directory?
    Y yogish293

    thanks..

    C / C++ / MFC question

  • How do i find last created file in a specified directory?
    Y yogish293

    How do i find last created file in a specified directory?

    C / C++ / MFC question

  • how do i convert unicode string to ansi format?
    Y yogish293

    i have string that may contain unicode character,i want to write that strings into text file,replacing unicode character with unicode values

    C / C++ / MFC question

  • Best Algorithm to merge two tree structured object? [modified]
    Y yogish293

    i have two root object,each object contains many members but i take up only one string member(m_strTitle) as reference to merge two object and it also contains one vector (holds pointer of object ) to hold all children of object ..... any best algorithm other than linear comparison ? example: two objects are m_objSource ( pointer of classObj ) m_objGuest (pointer of classObj ) structure of classObj is { CString m_strTitle; ............... ............. vector m_vectChildFolder; }

    modified on Monday, February 28, 2011 2:13 AM

    C / C++ / MFC graphics algorithms data-structures tutorial question

  • how to change quick launch shortcut and start menu shortcut path?
    Y yogish293

    i want to change quick launch path and start menu shortcut path for existing shortcuts.... also rollback to original path..

    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