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

Search:

Type: Posts; User: Distrust

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,105

    Re: Own Windows shell replacement - help in OOP

    Ok, thanks for the advice, I did it exactly in this way. My taskbar is fully working now :)
  2. Re: SelectObject() doesn't work in non-static wndproc

    It's hard to say, because when i compare them just before I call SelectObject they aren't the same - first value is negative, second is positive (after casting them to int). But if I view the value...
  3. Re: SelectObject() doesn't work in non-static wndproc

    Yes, you're right. My mistake.


    I would have to show much more code. Rather, no one would like to read this. Anyway it is not a good idea.


    For WM_DESTROY message.

    I found the problem...
  4. Re: SelectObject() doesn't work in non-static wndproc

    I'm using only pure WinAPI and my own classes.
  5. Re: SelectObject() doesn't work in non-static wndproc

    Only in this piece of code that I posted on forum. Sorry, i just fixed it. The problem still exists.
  6. SelectObject() doesn't work in non-static wndproc

    I have a base class for my window. All is working fine excluding SelectObject(). This function
    doesn't set font handle to device context, so text is painting using system font. Why? Because of...
  7. Replies
    2
    Views
    1,105

    Own Windows shell replacement - help in OOP

    I'm writing my own shell replacement for Windows 7 and 8 (32 & 64bit). This is my hobby and I do this program for personal use only.

    Currently I have done (in 90% - small issues left)...
  8. Re: temperature probes, voltage probes, etc. .dll

    You can use WMI Object Browser or WMI Explorer to find something useful. Unfortunately - some objects / events are not available on some systems / configurations. Example:...
  9. Re: temperature probes, voltage probes, etc. .dll

    I think the best way to obtain these informations is to write your own driver but it requires .dll.
    You can also read about:
    http://en.wikipedia.org/wiki/CPUID (asm is necessary, it requires .dll)...
  10. Replies
    3
    Views
    1,493

    Re: Shell replacement - The tray window

    Look at logs from my application (in attachment).
  11. Replies
    3
    Views
    1,493

    Re: Shell replacement - The tray window

    Yes, I know about it.
    Avira have uVersion == 0, so this:

    SendNotifyMessage(lpTrayItem^.hWindow, lpTrayItem^.uCallbackMessage, lpTrayItem^.uID, uMsg);
    should work, but doesn't.

    Popup menu is...
  12. Replies
    3
    Views
    1,493

    Shell replacement - The tray window

    Hello everyone!

    I'm trying to make my own shell (explorer.exe) for Windows XP / 7.

    I did the first part - tray window, but... it still has some bugs. For example: if I click the right mouse...
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured