Search:

Type: Posts; User: Scarvenger

Page 1 of 9 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    3,412

    Creating a panel from a .rc

    Hey,

    I want to create a panel inside a Win32 window. This panel was specified inside a .rc in a DLL. I already found the functions CreateDialog and DialogBox but both are used to create a dialog...
  2. Replies
    9
    Views
    3,644

    Simple undecidable problems

    Hi,

    Recently i have been studying about undecidability. And along with this study i saw many examples that involved really complex undecidable problems. And i saw too examples too much far from a...
  3. Replies
    5
    Views
    2,013

    Well, as i didn't enjoyed the idea of having a...

    Well, as i didn't enjoyed the idea of having a object to represent a message I refactored it this way:



    #include <iostream>
    #include <string>
    #include <cassert>
    #include <fstream>
    #include...
  4. Replies
    5
    Views
    2,013

    Yes, that is perfectly doable, thanks for the...

    Yes, that is perfectly doable, thanks for the idea.



    No problem :D



    Oh, a filter is good too, thank yoou :D
  5. Replies
    5
    Views
    2,013

    You are right, thank you. Oh, no special...

    You are right, thank you.



    Oh, no special reason, but that should really be a little more readable, thank you for
    pointing out that.

    Besides that did you like the interface that the user...
  6. Replies
    5
    Views
    2,013

    Log Library (Mini-Review?)

    Hey, I have been coding a 30 minutes logging library for my applications, I would appreciate some comments about it :).

    Thank You!



    #include <iostream>
    #include <string>
    #include <cassert>...
  7. Replies
    5
    Views
    3,486

    Nothing usefull there, it just says how to create...

    Nothing usefull there, it just says how to create a user, what i want to do is to add a existing user to a computer, thank you anyways.
  8. Replies
    5
    Views
    3,486

    Im adding a remote user to a remote computer.

    Im adding a remote user to a remote computer.
  9. Replies
    5
    Views
    3,486

    Add/Delete Remotely a user

    Hey, how can i add and remove a user from another machine that is in my network? I have administrator privileges on both remote machine and local machine.

    I have already researched about the Net*...
  10. Replies
    0
    Views
    1,185

    Mouse Window Interaction

    Hey, i did a system on windows that creates multiple pointers and changes the way that these pointers interact with the windows in the sis op (for example, if two pointers click in the same window...
  11. Replies
    3
    Views
    1,059

    Oh, im sorry, wwhat i meant to say is that i want...

    Oh, im sorry, wwhat i meant to say is that i want to display two or more cursors in my desktop all information about the position of the mouses i know how to get, just dont know how to display them...
  12. Replies
    3
    Views
    1,059

    Multi Cursor

    Hey, i was wondering if there is some sort of multi pointer thing in the windows such as there is in Linux... Anyone knows it?
  13. Replies
    10
    Views
    20,466

    Ok, i will try to find something until then, but...

    Ok, i will try to find something until then, but im really lost =(
  14. Replies
    10
    Views
    20,466

    @ matsp It says that i have read 0 bytes... ...

    @ matsp

    It says that i have read 0 bytes...

    @ BobS0327

    Even your example doesn't work... The functions all return ok with no error messages but the CommandLine is empty....

    And im sorry...
  15. Replies
    10
    Views
    20,466

    ReadProcessMemory Error

    Hey, I am trying to use the ReadProcessMemory function but every time I call it I get the error code 299 from the function GetLastError() that means: "Only part of a ReadProcessMemory or...
  16. Replies
    21
    Views
    16,784

    Oh, i got it, and how can i know that function...

    Oh, i got it, and how can i know that function address?
  17. Thread: mouse_event

    by Scarvenger
    Replies
    6
    Views
    3,092

    Yes, i tried that but if i use SetCursorPos...

    Yes, i tried that but if i use SetCursorPos inside a game the cursor just dont answer, and that isnt true with mouse_event.

    After reading the remarks: "If MOUSEEVENTF_ABSOLUTE value is specified,...
  18. Thread: mouse_event

    by Scarvenger
    Replies
    6
    Views
    3,092

    RECT resolution; HWND desktop =...

    RECT resolution;
    HWND desktop = GetDesktopWindow();

    GetWindowRect(desktop, &resolution);

    int width = resolution.right;
    int height = resolution.bottom;

    mouse_event(MOUSEEVENTF_MOVE |...
  19. Thread: mouse_event

    by Scarvenger
    Replies
    6
    Views
    3,092

    Ah, sorry :P Im trying to set the mouse...

    Ah, sorry :P

    Im trying to set the mouse position at some position on the screen, but when i set like 900x350, the mouse dont appear at the position i wished, it appears in 50x10 (hipothetical...
  20. Replies
    21
    Views
    16,784

    1) Ok, once i have done this what should i do? I...

    1) Ok, once i have done this what should i do? I mean, i have my code running inside the process, why have i done that? If it is to overwrite somre memory i could have done this by simply using...
  21. Thread: mouse_event

    by Scarvenger
    Replies
    6
    Views
    3,092

    mouse_event

    Hey, i am using mouse_event function to simulate mouse input, but when i set the mouse position it moves very litlle, the values i used are the in the range of my screen resolution [0x0 - 1440x900]....
  22. Replies
    21
    Views
    16,784

    Process.cpp #include "Process.h" LPCTSTR...

    Process.cpp


    #include "Process.h"

    LPCTSTR ProcessPrivileges::Tcb = SE_TCB_NAME;
    LPCTSTR ProcessPrivileges::Debug = SE_DEBUG_NAME;
    LPCTSTR ProcessPrivileges::Backup =...
  23. Replies
    21
    Views
    16,784

    Ok, this is the code so far: Process.h ...

    Ok, this is the code so far:
    Process.h


    #pragma once

    #include <windows.h>
    #include <Tlhelp32.h>

    class Process
  24. Replies
    21
    Views
    16,784

    Ok, im working on that, soon i should post my...

    Ok, im working on that, soon i should post my code here...
  25. Replies
    21
    Views
    16,784

    Oh, the keybd_event function worked just fine...

    Oh, the keybd_event function worked just fine outside directX games... But in directX games simply nothing happened... I'm stuck here, any sugestions? I think that BobS0327 method is pretty good but...
Results 1 to 25 of 221
Page 1 of 9 1 2 3 4