CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: MahmoudUthman

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    5,698

    MFC virtual ctreectrl ?

    I'm trying to display a list of file system entries , for example the tree of a partition , what I want to do is to display entries expanded but only add entries to the ctreectrl as needed so for...
  2. Re: is there a faster alterantive for CreateFileW ?

    I need a handle for each directory to use with the NtQueryDirectoryFile
  3. is there a faster alterantive for CreateFileW ?

    I'm writing a directory enumerator and CreateFileW takes as long as NtQueryDirectoryFile when it's cached , is there a faster alternative to get the handle ?
  4. MFC tree control highlight item selected by the keyboard ?

    I have this old code in which I had:

    void ModCTreeCtrl::OnLButtonDown(UINT nFlags, CPoint point)
    {
    UINT uFlags;
    HTREEITEM htItem = this->HitTest(point, &uFlags);
    if ((htItem != NULL) &&...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured