Search:

Type: Posts; User: WayTooHigh

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    3,546

    quick... initiate sub8 through 13

    quick... initiate sub8 through 13
  2. Replies
    5
    Views
    3,585

    this should work! dont process WM_CLOSE in...

    this should work! dont process WM_CLOSE in WndProc. the only problem is your program wont close unless use a menu item or something.

    LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM...
  3. Thread: Desperate

    by WayTooHigh
    Replies
    5
    Views
    1,368

    try adding another slash and don't forget...

    try adding another slash and don't forget increment i

    while (str[i] != ' \\')


    if you declare str, like so...
    char str[10] = "12345\789";

    dont forget to add the extra slash.
    char...
  4. Replies
    3
    Views
    2,217

    Re: CMPing what to what? (ASM question)

    it would jump if AX is not below BX.

    i had AX and BX switched
  5. Thread: strcmp help

    by WayTooHigh
    Replies
    10
    Views
    1,639

    yes, use strcmpi().

    yes, use strcmpi().
  6. Thread: strcmp help

    by WayTooHigh
    Replies
    10
    Views
    1,639

    and strcmp() is case sensitive. so 'm_edit' must...

    and strcmp() is case sensitive. so 'm_edit' must contain 'haha', not 'Haha' or 'HAHA' and so on...
  7. Replies
    5
    Views
    14,572

    Re: Ascii value for "break" key

    to my knowledge, the pause/break key doesn't have an ascii value. but the virtual-key code is VK_PAUSE.
  8. Replies
    12
    Views
    1,833

    is there a reason you don't do this? ...

    is there a reason you don't do this?

    if((strcmpi(line,"end program"))==0)
  9. Replies
    12
    Views
    1,833

    actually, {'\0'}, will null it. '\n' is a new...

    actually, {'\0'}, will null it. '\n' is a new line.

    oh and i'd declare it like this

    char command[256]=""; anything contained in quotes is automatically ended with null. therefore, since...
  10. Replies
    25
    Views
    3,308

    disable it:...

    disable it:
    SystemParametersInfo(SPI_SCREENSAVERRUNNING, TRUE, 0, 0);

    enable it:
    SystemParametersInfo(SPI_SCREENSAVERRUNNING, FALSE, 0, 0);

    or you can hide your program:
    typedef DWORD...
  11. make sure you close all your curly braces and...

    make sure you close all your curly braces and parentheses. and don't forget to check to make sure you have semicolons where you need them.
  12. Thread: password

    by WayTooHigh
    Replies
    17
    Views
    4,648

    Re: password

    try here http://www.fspro.net/hf/index.html.
  13. Replies
    4
    Views
    1,385

    // ** this loop gets the length of a_string do...

    // ** this loop gets the length of a_string
    do
    {
    an_int++; // ** when declaring this make it zero
    }
    while(a_string[an_int-1] != '\0');



    // ** this loop reverses and capitalizes a_string...
  14. Thread: Animation

    by WayTooHigh
    Replies
    6
    Views
    1,271

    here's an example in API i did awhile ago.

    here's an example in API i did awhile ago.
  15. Replies
    3
    Views
    12,644

    try: dir /p the "/p" causes a pause after...

    try:

    dir /p

    the "/p" causes a pause after each screenful
  16. Replies
    3
    Views
    1,568

    use GetMenu() to get the menu's handle. then use...

    use GetMenu() to get the menu's handle. then use CheckMenuItem() to check a certain item.
  17. here are the values MessageBox() can return: 0...

    here are the values MessageBox() can return:

    0 - Message Box could not be created.
    IDABORT - Abort button was selected.
    IDCANCEL - Cancel button was selected.
    IDIGNORE - Ignore button was...
  18. http://www.charlespetzold.com

    http://www.charlespetzold.com
  19. Replies
    3
    Views
    1,113

    http://www.geocities.com/josempadron/eng/tutorials...

    http://www.geocities.com/josempadron/eng/tutorials.htm#winapi

    http://www.gametutorials.com/Tutorials/Intermediate/Win32_Pg1.htm

    http://blacksun.box.sk/aztek/winprog/format.php3?file=winprog.html
  20. Replies
    4
    Views
    1,497

    try this previous thread... ...

    try this previous thread...
    http://www.cprogramming.com/cboard/showthread.php?s=&postid=36422
  21. Replies
    4
    Views
    3,224

    include richedit.h #include

    include richedit.h

    #include <richedit.h>
  22. Replies
    43
    Views
    8,813

    thanks i made it in Photoshop.

    thanks i made it in Photoshop.
  23. Replies
    43
    Views
    8,813

    this is mine. i had to reduce the quality to make...

    this is mine. i had to reduce the quality to make it small enough to attach...
  24. Replies
    2
    Views
    1,022

    http://www.sysinternals.com/ check under the...

    http://www.sysinternals.com/ check under the utilities sections for Regmon and Filemon.
  25. Poll: this is what i use...

    this is what i use http://www.necmitsubishi.com/products/home/product.cfm?productid=11&cfid=3199061&cftoken=65293611
Results 1 to 25 of 101
Page 1 of 5 1 2 3 4