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

Search:

Type: Posts; User: programm

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    10,055

    c++ graphic class/library

    I want to learn to create a game.
    Im looking for a class ( perhaps it is by default installed in IDE ) to:

    -Load picture for the display, instead of console. Preferred If could be resizeable (...
  2. Replies
    2
    Views
    3,098

    Visual studio import library

    Is there any way to add external libraries files to project quick?

    Like I have used to do in java eclipse:
    Copy/Paste all jars to project folder, and with 2 extra clicks in project options I...
  3. Replies
    2
    Views
    1,894

    Game programming with libraries

    I want to start game programming with ogre 3D or any other graphic / game library.

    I have found several game engines. The problem comes to installiation. All of them requires to use cmd.exe,...
  4. Replies
    4
    Views
    1,305

    Re: Simulate cursor ( mouse ) movement

    I expected advanced variant, but ok. I made as you suggest already.
    I have extra question, it is related.


    mouse_event(MOUSEEVENTF_LEFTUP, x, y, 0, 0);

    What 3rd and 4th parameter require? Is...
  5. Replies
    4
    Views
    1,305

    Simulate cursor ( mouse ) movement

    int x = 100;
    int y = 100;

    SetCursorPos(x,y);
    Sleep(2000);
    SetCursorPos(x+100,y+200);

    This code sets cursot to one dot, after 2 seconds to another dot.
    However cursor just...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured