Search:

Type: Posts; User: PT Exorcist

Page 1 of 13 1 2 3 4

Search: Search took 1.15 seconds; generated 46 minute(s) ago.

  1. Replies
    3
    Views
    745

    Re: How to get the styles of a window?

    Thanks!
  2. Re: How to get the handle of the current foreground window?

    Ok, found the answer : HWND GetForegroundWindow(VOID);
  3. How to get the handle of the current foreground window?

    How can I do that?
  4. Replies
    3
    Views
    745

    How to get the styles of a window?

    I want to know when a certain window from another program has the WS_VISIBLE flag set. How can I do that?

    Thanks
  5. Re: [2005] Transparent labels flicker on tabbed form

    I got the same problem. When I add any control to my tab control it will appear first at the top of the the tab container and only after a fraction of a second will it be palced at the right spot....
  6. Replies
    35
    Views
    38,993

    Re: Subclass (hook) external programs

    Hello. Hooking this way allows us to receive WM_COMMAND and EN_UPDATE messages? I do not seem to be able to do it.
  7. Replies
    2
    Views
    540

    Strongly named assemblies

    Ok, Now I have a strange problem. I have a solution with two projects: one is an exe project, the other one a dll one. They work together, and they both use a component that is strongly named, which...
  8. Re: Detecting wherever a certain minimized window is blinking

    Thanks! That was it.
  9. Replies
    2
    Views
    2,239

    Monitoring messages like Spy does

    Hello

    I'm using EasyHook ( http://www.codeproject.com/KB/dotnet/EasyHook64.aspx ) to do dll injection into wordpad. Everything with the dll injection seems working fine. Now, I'd like to monitor...
  10. Detecting wherever a certain minimized window is blinking

    Is it possible? How to do it?

    Thanks
  11. Is it possible to draw a picture on a window in another process?

    Is it? If yes, how?

    Thanks
  12. Replies
    14
    Views
    1,029

    Re: Cross threading issue

    Sorry but it is in c#


    public partial class Form1 : Form {
    public Form1() {
    InitializeComponent();
    }

    ThreadWorker tw = new ThreadWorker();
  13. Replies
    14
    Views
    1,029

    Re: Cross threading issue

    Actually, found a really simple way to do what I want, with lots of events. I'll show you the code in minutes!
  14. Replies
    14
    Views
    1,029

    Re: Cross threading issue

    Actually I looked at both your codes. :D
  15. Replies
    14
    Views
    1,029

    Re: Cross threading issue

    Actually, backgroundworker seems to work well for methods that might raise only one event, with arguments passed by ReportProgress(). Problem is my class is supposed to raise something like 30 events...
  16. Replies
    14
    Views
    1,029

    Re: Cross threading issue

    As soon as I clean up this messy code I'll do it.
  17. Replies
    14
    Views
    1,029

    Re: Cross threading issue

    Ok, thanks. I think I got it using BackgroundWorker.
  18. Replies
    14
    Views
    1,029

    Re: Cross threading issue

    It it is flagging an error as I try to add an item from that List(in the second thread) to my listbox(on the main thread).

    edit: Ok, the problem seems to be that my main class, that has the new...
  19. Replies
    14
    Views
    1,029

    Cross threading issue

    Hello

    I have a GUI application that will run some stuff on a background thread. That background thread will create a List of objects that I will need to use. Now the problem is that I need to...
  20. Clearing text from a richtextbox from another process

    Hello. I want to clean the contents from a richtextbox from another program(wordpad, for example), one which I do not control. I tried using EM_SETTEXTEX but it will only crash wordpad. I've read...
  21. Replies
    9
    Views
    1,182

    Re: Starting a process that's not visible

    http://tourist.spaces.live.com/blog/cns!851D2B32CC1B64B4!573.entry

    Problem is that I'm not using that login thing. Strange!
  22. Replies
    9
    Views
    1,182

    Re: Starting a process that's not visible

    Doesn't work here :( It always shows the window.
    Damn, what might be the problem?
  23. Replies
    9
    Views
    1,182

    Re: Starting a process that's not visible

    Doesn't work.
  24. Replies
    9
    Views
    1,182

    Re: Starting a process that's not visible

    bump
  25. Re: Artificial Intelligence (Teach the computer how to play a game)

    Best way is using neural networks, and doing a class for them only takes like a 100 lines(at least in vb.net), being that the code hard code itself is just like 10 lines.
  26. Replies
    9
    Views
    1,182

    Re: Starting a process that's not visible

    Because the original code is in c#. I'm just posting here as it has more crowd.
  27. Replies
    9
    Views
    1,182

    Starting a process that's not visible

    Hello, I want to run a command line application in the background of my program, so I want it to be invisible. I first thought of using the ShowNoWindow of the ProcessStartInfo class, but for some...
  28. Replies
    0
    Views
    549

    Windows services

    Is it possible for a windows service to use WinApi? I'd like to know if I can use it to move the mouse in the screen or not.

    Thanks
  29. Replies
    10
    Views
    898

    Re: Reading memory

    What does that mean?
  30. Re: how to click in a (x,y) position on the screen?

    yes it is and i'm using spy and i know the window is receiving it.
  31. how to click in a (x,y) position on the screen?

    hello

    I want to click in a game(something like solitair or freecell) in a specified (x,y) position. I tried sending it a WM_LMOUSEDOWN followed by a WM_LMOUSEUP but it seems to just put the mouse...
  32. Re: Getting the low and high 16 bit numbers from a 32bit number

    yeah that was it. i already discovered it by myself too. thanks anyway
  33. Getting the low and high 16 bit numbers from a 32bit number

    So if I have two 16 bits numbers and I want to combine them in a 32 bit number, how can I do that in .net? And also, how to do the reverse?

    I need this to do some things with API's. In c++ I'd...
  34. Replies
    10
    Views
    898

    Re: Reading memory

    I don't know. I just used a program like T search to get its address
  35. Replies
    10
    Views
    898

    Re: Reading memory

    bump
  36. Replies
    8
    Views
    936

    Re: declaring pointers in a class

    I'd want to do something like this:

    namespace pointers {
    unsafe class Program {
    int **ptr1;
    static void Main(string[] args) {
    //want to be able to do something...
  37. Replies
    8
    Views
    936

    Re: declaring pointers in a class

    yeah i already had done that, that was not what i was asking for:afrog:
  38. Replies
    8
    Views
    936

    declaring pointers in a class

    Hello

    I have a class that has the following configuration:

    Random _rand;
    double _learnRate;
    double[] _outputLayer;
    double[] _hiddenLayer;
    double[,]...
  39. Replies
    10
    Views
    898

    Re: Reading memory

    First I know that when I open bla.exe it will have a string on the memory location 500. I know bla.exe's base address is 200. So I will subtract 500-200=300 to know the relative memory location of...
  40. Replies
    10
    Views
    898

    Re: Reading memory

    hmm I don't see a point in showing the code(although I can). The code works well reading the programs memory, as if I look for the memory offset and put it in my program without restarting the app,...
Results 1 to 40 of 494
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width