Search:

Type: Posts; User: anobody

Search: Search took 0.01 seconds.

  1. Replies
    13
    Views
    2,432

    open source?

    open source?
  2. Replies
    7
    Views
    1,288

    if you know what messages to send... Yes

    if you know what messages to send... Yes
  3. Replies
    7
    Views
    1,288

    nope. Can you explain?

    nope. Can you explain?
  4. Replies
    7
    Views
    1,288

    Controlling programs

    Someone asked this question a few days ago.
    I wanted to know how to click the ok button in the windows login dialog.
    So I found out.


    int APIENTRY WinMain(HINSTANCE hInstance,
    ...
  5. Replies
    3
    Views
    1,056

    FAQ material

    ^-----^

    Could someone fill in the finer details?
    I'm looking it up now.
  6. Replies
    3
    Views
    1,314

    one hit = 1 point set up a counter. say 2...

    one hit = 1 point

    set up a counter. say 2 seconds.
    if they get another hit before the timer is up, up the points. hit =2
    and restart the counter. if they get another hit.... hit=3
    and so on.
    ...
  7. What are the top 10 things a windows programmer should know

    See Subject
  8. Replies
    5
    Views
    1,467

    this might not work. I have no ideas about how to...

    this might not work. I have no ideas about how to do it.

    If you could find a way to set all other process(even kernel) to a low prioriy, then set yours to high, that might give you the processor...
  9. Replies
    11
    Views
    1,440

    >>You suggest that I make the protected variable...

    >>You suggest that I make the protected variable virtual?
    i don't think you can make a variable virtual


    if win is in your base class then do something like


    wnWindowStruct virtual getWin();...
  10. Replies
    11
    Views
    1,440

    sounds like your using inharitance(forgive my...

    sounds like your using inharitance(forgive my spelling)

    If that is true, then you need to creat a virtual method to access "win".
    I'm not sure but hope that helps.
    maybe if you could explain a...
  11. Replies
    8
    Views
    1,663

    try taking the number in as a string. then just...

    try taking the number in as a string. then just flip it and compair it to the original
  12. Replies
    0
    Views
    1,146

    hidding the consol

    I've made a server and don't want to have to look at the console window all the time.
    Is there a way to hide it without having to switch from main() to winmain()?

    -----------
    ok i've found...
  13. Replies
    7
    Views
    1,810

    How do I find lpClassName? And does it stay the...

    How do I find lpClassName?
    And does it stay the same after I shut down the program and re-open it?

    I've gotten it to work.


    HWND hMainWnd = FindWindow(NULL," - WinProxy");
    if(hMainWnd ==...
  14. Replies
    7
    Views
    1,810

    finding hInstance

    ok here I go.




    BOOL GetClassInfo(
    HINSTANCE hInstance,
    LPCTSTR lpClassName,
    LPWNDCLASS lpWndClass
    );
  15. I would like to know also

    i dont know how to answer the question you asked. I think i might be able to be a little more specific.

    ok here I go.


    BOOL GetClassInfo(
    HINSTANCE hInstance,
    LPCTSTR...
  16. Replies
    3
    Views
    2,878

    vc++ line numbers

    who do you get it to show them to you?
  17. Thread: echo server

    by anobody
    Replies
    4
    Views
    1,660

    opps. thx **turns red**

    opps.
    thx

    **turns red**
  18. Thread: echo server

    by anobody
    Replies
    4
    Views
    1,660

    I took this stright out of the link above. also...

    I took this stright out of the link above.
    also added a bit more output.



    #include <winsock.h> // winsock.h always needs to be included
    #include <stdio.h>

    #define MY_PORT 10000
    #define...
  19. Replies
    1
    Views
    891

    I'm not sure what your talking about but here I...

    I'm not sure what your talking about but here I go.
    TCP/IP to talk to other machines.

    #define LOGIN 0
    #define LOGOUT 1
    #define COMMAND1 2
    #define COMMAND2 3


    MyBuffer[1001];
  20. Replies
    2
    Views
    2,020

    View Post

    <<Not trying to be rude but
    what is your question?
  21. Thread: echo server

    by anobody
    Replies
    4
    Views
    1,660

    echo server

    Does anyone have a source for a simple echo server?

    I'm trying to learn to use windows sockets.
    I've followed some tuts but some don't compile and others just do not work.
    ...
Results 1 to 21 of 21