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

Search:

Type: Posts; User: nemok

Page 1 of 20 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    4
    Views
    3,438

    Re: Problem with StretchBlt

    Thanks it worked.
  2. Replies
    4
    Views
    3,438

    Re: Problem with StretchBlt

    OK, but how can I increase it's size in order to stretch it?
  3. Replies
    4
    Views
    3,438

    Problem with StretchBlt

    Hello,

    I am trying to resize (stretch) a bitmap and then set it with UpdateLayeredWindow on the dialog.
    StretchBlt works fine but when I increase the windowSize param from the UpdateLayeredWindow...
  4. Replies
    8
    Views
    5,294

    Re: Record mouse and keyboard

    OK fixed using RIDEV_INPUTSINK in flags
  5. Replies
    8
    Views
    5,294

    Re: Record mouse and keyboard

    Hello,

    I have tried RegisterRawInputDevices and I receive WM_INPUT messages for all mouse event and key events.
    The problem is that I stop receiving WM_INPUT messages when the application window...
  6. Replies
    8
    Views
    5,294

    Re: Record mouse and keyboard

    I was thinking about using RegisterRawInputDevices to get raw input from mouse and keyboard. Has anyone used this method is it working?
  7. Replies
    8
    Views
    5,294

    Re: Record mouse and keyboard

    These methods involve injecting dlls and because of this might have problems with Vista's UAC.
    I have seen applications that do this by installing a system-wide hook that does not involve injecting...
  8. Replies
    8
    Views
    5,294

    Re: Record mouse and keyboard

    How can I read the raw input from mouse and keyboard (from user mode)?
    Found an application (Axife Mouse Recorder) that does this.
  9. Replies
    8
    Views
    5,294

    Record mouse and keyboard

    Hello,

    Could you please tell me if you know of any other way of receiving global mouse and keyboard input except for SetWindowsHookEx within a dll? I am working on an macro recording application...
  10. Replies
    7
    Views
    1,312

    Re: Get Windows update version

    It seems to be done with COM interfaces.
    You can ask on specialized win32 api newsgroup :
    news://194.177.96.26/comp.os.ms-win...rogrammer.win32
    where it has often been discussed. (thanks to fred)
  11. Replies
    7
    Views
    1,312

    Get Windows update version

    Hello,

    Is it possible to see if a specific update is installed (KB-XXXXX)???

    Thank you.
  12. Thread: Flickering

    by nemok
    Replies
    3
    Views
    889

    Re: Flickering

    Thank you for your help.
    Used ExcludeClipRect and it works fine now.
  13. Thread: Flickering

    by nemok
    Replies
    3
    Views
    889

    Flickering

    Hello,

    I have a white dialog with a custom painted gradient control and over it there are some static texts.
    The problem is that when when I hide and then show the statics or when I change their...
  14. Replies
    6
    Views
    8,734

    Copy constructor for std::vector ???

    Hello,

    Does the vector class have a copy constructor. If yes why isn't it working for me.
    I have this copy constructor for my own class:


    CONTROL(CONTROL& ctrl)
    {
    this->bNot = ctrl.bNot;...
  15. Replies
    2
    Views
    958

    Re: Insert tab into partition properties

    I found this article on adding tabs in file and folder properties dialog. Does anyone know how to do the same but for partitions?
  16. Replies
    2
    Views
    958

    Insert tab into partition properties

    Hello,

    Do you know of any method of inserting a new tab with my controls in the properties window of a partition (next to General ,Tools, Hardware) when the user right clicks a partition and...
  17. Replies
    5
    Views
    3,742

    Re: Match partition number with drive letter

    Thanks, I am using the IOCTL_STORAGE_GET_DEVICE_NUMBER method and it works fine.
  18. Replies
    5
    Views
    3,742

    Re: Match partition number with drive letter

    I am using DeviceIoControl with IOCTL_DISK_GET_DRIVE_LAYOUT_EX and I am getting a DRIVE_LAYOUT_INFORMATION_EX structure that contains PARTITION_INFORMATION_EX structures. These structures have...
  19. Replies
    5
    Views
    3,742

    Match partition number with drive letter

    Hello,

    Is there any way to match a partition number (retrieved with DeviceIoControl) with it's drive letter, or the other way around?

    Thank you.
  20. Re: Please help with flicker problem on resize (using CMemDC)

    I have managed to get rid of the flickering. The problem now is that the controls are painted incorrectly. I have multiple controls on my dialog and some of them aren't painted at all, some only in...
  21. Re: Please help with flicker problem on resize (using CMemDC)

    The parrent window is a dialog and I set the CLIPCHILDREN style from the properties with no changes...
  22. Replies
    10
    Views
    1,644

    Re: Resize list columns when the list is resized

    I used a breakpoint and OnShow s called only once....This very strange. Does it matter that the control is on a child dialog shown inside another dialog?
    Will try this on a test project to see the...
  23. Replies
    10
    Views
    1,644

    Re: Resize list columns when the list is resized

    The code that fills the list is in OnShowWindow.
    The code in OnSize is:


    if(GetParent()->IsWindowVisible())
    {
    RECT Rect;
    int nTotalSize;
    GetClientRect(&Rect);...
  24. Re: Please help with flicker problem on resize (using CMemDC)

    The article doesn't come with an example http://www.codeguru.com/Cpp/misc/misc/flickerfreedrawing/article.php/c389
  25. Replies
    10
    Views
    1,644

    Re: Resize list columns when the list is resized

    Done as you said but the same problem appears. There is a big lag. By lag I mean that it slows the performance of the dialog (of the resizing) and the horizontal scroll bar appears and then...
Results 1 to 25 of 480
Page 1 of 20 1 2 3 4





Click Here to Expand Forum to Full Width

Featured