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

Search:

Type: Posts; User: navarromoral

Search: Search took 0.02 seconds.

  1. WindowFromDC for desktop HDC under Vista/7

    Hello all!

    I am trying to determine if a HDC points to the desktop. To do that I use WindowFromDC() which works fine under XP but returns 0 under Vista/7.

    Is there any way to determine it...
  2. Replies
    1
    Views
    2,229

    Minifilter newbie question

    Hello everyone! I am new to minifilter drivers and I have thought to design one that just appends a non-existent file to a specified folder, that is, let's say for the folder \test\, when I open this...
  3. Replies
    3
    Views
    5,700

    Re: Merging local and remote folders.

    Thans for your replay aamir121a!
    I think I did not explain what I want to do clear enough... I want to see and access both the contents of a local and remote folders, but without copying anything,...
  4. Replies
    3
    Views
    5,700

    Merging local and remote folders.

    Hello everybody! I would like to write an application that makes Windows see the contents of a remote and local folders when accessing a local one. That is, if I have a remote folder with files a.txt...
  5. Replies
    5
    Views
    7,465

    Re: Friendship and circular dependencies

    Yes, that could work, I had not thouth of that!!
    The problem I see is that it breaks the encapsulation of the classes, but if it works...

    Thanks a lot!!
  6. Replies
    5
    Views
    7,465

    Re: Friendship and circular dependencies

    thank you for your reply:

    The first option is mandatory, so I cannot change it.
    The second is what I was trying to avoid.
    And the third is the only option left, so I guess I'll do this way. I...
  7. Replies
    5
    Views
    7,465

    Friendship and circular dependencies

    Hello, I would like to know how I could solve the following circular dependency.

    class_A.h
    ------------
    #include "../include/class_B.h"
    class class_A
    {
    public:
    ...
    friend void...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured