Search:

Type: Posts; User: argon

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,029

    Wow!! Thanks, works like a charm!!!

    Wow!! Thanks, works like a charm!!!
  2. Replies
    2
    Views
    2,029

    printf like function

    Hello everyone.

    I need to create a function that receives a variable number of arguments in order to send them to the fprintf function itself.

    Further explanation:
    My function will receive an...
  3. Replies
    0
    Views
    4,554

    Error '-2147417851 (80010105)'

    Hi everyone.

    I'm having trouble with a second query to an Access database.
    The error is #-2147417851 which is an automation error.ī
    I've been looking for documentation on this error and found...
  4. Replies
    9
    Views
    2,552

    Poll: for fun I've done some programs to practice a lot...

    for fun I've done some programs to practice a lot of things.
    Normally I program simple internet programs.
  5. Replies
    6
    Views
    2,462

    Poll: excuse my ignorance

    but...

    what quiz?
    Where can I take it??
  6. Replies
    59
    Views
    10,149

    Try MSCDEX.EXE

    Why donīt you try to get the mscdex.exe file from somebody else's computer?
    Then you need to copy one line from the autoexec.bat and another from the config.sys, insert them in your corresponding...
  7. Replies
    2
    Views
    4,994

    UNIX fork() equivalent in Windows

    Hello everyone,

    Does anyone know if there's an equivalent in Windows to UNIX's fork() system call?

    I have a system already workin in UNIX, but now I need to create a similar one in Windows, and...
  8. Replies
    13
    Views
    1,477

    Could it be that ctrl+z makes cin.fail() = 0? ...

    Could it be that ctrl+z makes cin.fail() = 0?

    Remember that when you type those type of key combinations you normally are trying to quit the program execution, but since you are expecting it, the...
  9. Replies
    11
    Views
    3,365

    I believe VB is the most suitable language for...

    I believe VB is the most suitable language for doing something like that, because you don't have to worry about handling events or so, you just have to focus on the functionality.
    I tried once to...
  10. Thread: pressing keys

    by argon
    Replies
    3
    Views
    909

    Why donīt you try to catch the signals from your...

    Why donīt you try to catch the signals from your keyboard?
    Depending on the platform you're intending to code, you could use the bios functions and of course, some assembly code...
  11. Replies
    6
    Views
    1,623

    I believe your problem is that youīre trying to...

    I believe your problem is that youīre trying to strcat a pointer, and you should use an array of characters.

    try this:

    char blank[MAX_NUMBER];

    then you must use strcpy

    strcpy(blank,"");
  12. Replies
    7
    Views
    1,240

    why donīt you use getchar() before leaving your...

    why donīt you use getchar() before leaving your program?
    In that way, your program will wait until you press a key before leaving and itīll give you the oportunity to take a look at all the...
Results 1 to 12 of 12