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

Search:

Type: Posts; User: gregorian

Search: Search took 0.01 seconds.

  1. Re: How to change window brightness and transparency?

    If you're using .NET, Transparency is a property you can set.
  2. Re: Writing a program to accept Global shortcuts

    Thank you for suggesting books!



    Well anyone installing a keylogger would disable his anti-virus program. Besides, most people wouldn't be aware about Services and would assume nothing's...
  3. Re: Writing a program to accept Global shortcuts

    There's no ultimate purpose for my interest, but I realize the information you provide can be misused.

    I got interested in Windows programming when I needed to write a program to simulate clicks...
  4. Replies
    3
    Views
    3,101

    Re: Create another taskbar in Windows 7

    Could you elaborate on 'new Windows 7 features' and what you'd like the taskbar to contain?



    It's easy to make a bar appear on the screen. You can get a feel of it by creating a form and...
  5. Re: Code that generates a mouse click event doesn't work

    I mentioned it once, but I guess I didn't make it clear enough. Allow me to clear any misunderstandings - I just wanted to simulate a click and the Show Desktop button was simply a test, not a goal....
  6. Re: Writing a program to accept Global shortcuts

    RegisterHotKey() is exactly what I was looking for. Thank you.

    I want to hide an application from the task manager (not just the taskbar) because I want to know how it's done. There are a lot of...
  7. [RESOLVED] Writing a program to accept Global shortcuts

    Let's say my application runs in the background and responds when F1 is pressed? I know F1 is reserved for Windows, so if overriding that isn't possible, can I listen for something like Ctrl-Alt-S?
    ...
  8. Re: Code that generates a mouse click event doesn't work

    I wanted to click on the Show Desktop button which is at the lower right corner in Windows 7.

    Thank you for the link and the help you provided. It's been great!
  9. Re: Code that generates a mouse click event doesn't work

    There isn't a bug in the code since I got it to work.

    When I said extra information, I was referring to the fact that you were providing co-ordinate data for the mouse click events (up and down)....
  10. Re: Need help with assignment, i cant fig it out.

    If it's what I think it is, you'll need to study about converting infix expressions to postfix (or prefix) and then using the stack to evaluate the postfix (or prefix) expression.

    Example:

    1 +...
  11. Re: I'm able to move the mouse pointer and right click but left click doesn't work

    I wanted to left click on the Show Desktop button. If it worked properly, the desktop would be visible.

    May I know why it's necessary for having an interval between the mouse down and mouse up...
  12. Replies
    5
    Views
    7,044

    Re: Basic Java theory practice test question

    Java provides a default constructor if you do not provide any constructor. Also, the default access specifier is not 'public' - it's called 'default' or 'friend'. You'll find the differences in any...
  13. Re: Code that generates a mouse click event doesn't work

    I got it to work. I use Autohide on my taskbar so I actually clicked before the taskbar showed up. Problem resolved.

    Thank you for your help Arjay, but it doesn't seem like the clicking operations...
  14. [RESOLVED] I'm able to move the mouse pointer and right click but left click doesn't work

    #define _WIN32_WINNT 0x0501
    #include <windows.h>
    #include <iostream>

    using namespace std;

    int main()
    {

    INPUT *mouse;
  15. Re: Code that generates a mouse click event doesn't work

    Thanks for the response. I checked out MSDN for information regarding the SendInput API and this is what I found :

    If this is the case, what can I do? How do I know that UIPI is blocking it?
    ...
  16. Re: Code that generates a mouse click event doesn't work

    Thank you very much for the quick response! I'll be sure to try it out soon but I'm looking for a way to generate a click at a particular co-ordinate on the screen independent of what applications...
  17. Re: Code that generates a mouse click event doesn't work

    Thank you for your help, but I need to generate a click outside my application. I had initially written my program for clicking on the start button, but since that didn't work I wanted to verify if I...
  18. [RESOLVED] Code that generates a mouse click event doesn't work

    This program is supposed to move to a button and click on it. When the button is clicked, it changes text.



    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using...
Results 1 to 18 of 18





Click Here to Expand Forum to Full Width

Featured