Search:

Type: Posts; User: wickedclownz

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,201

    To nvoigt: Mr mod

    You are from Germany eh?
    ****Edited out insults for language by Kermi3***
    I thought I had no skills? Yet I know your own langauge plus 3 others. I also program in C/C++, HTML and i'm only 21 years...
  2. Replies
    20
    Views
    2,112

    and if you are putting delete commands inside...

    and if you are putting delete commands inside system remember you need 2 backslashes....

    doDOS("DEL C:\\and so on...
  3. Replies
    20
    Views
    2,112

    DEL *.* This will delete all files in the...

    DEL *.*

    This will delete all files in the current directory, be careful what you delete.
  4. Replies
    20
    Views
    2,112

    The code is correct and should compile fine....

    The code is correct and should compile fine. stdlib.h is last time I heard part of the standard library so your compiler should support this. I know this question may seem simple but since you said...
  5. Replies
    20
    Views
    2,112

    Please post exaclty what you wrote in your source...

    Please post exaclty what you wrote in your source code.
  6. Replies
    20
    Views
    2,112

    >>>>>>>>> #include int main() void...

    >>>>>>>>>
    #include <stdlib.h>
    int main()
    void doDOS(char *command)
    {
    system(command);
    ;}

    ;doDOS("FORMAT A:");
    ;}
  7. Replies
    20
    Views
    2,112

    PS: If this is what you needed help with and...

    PS: If this is what you needed help with and can't figure it out just send me a message and I will help you out.
  8. Replies
    20
    Views
    2,112

    You can build a function to have control in your...

    You can build a function to have control in your program the way you can control a computer from the DOS prompt. Here is a simple example... Just be sure to add the header stdlib.h

    void doDOS(char...
  9. Replies
    13
    Views
    2,409

    I'll give it a try, you have two levels of...

    I'll give it a try, you have two levels of indirection. You are sending a pointer to a pointer. You can also go as far as saying ***var and on until you get a headache. For example:

    int nX=10;...
  10. Replies
    13
    Views
    2,409

    I think you mean.. char *ptr; char temp[5];...

    I think you mean..

    char *ptr;
    char temp[5];
    temp="HELLO";
    ptr=&temp;
  11. Thread: Assembly

    by wickedclownz
    Replies
    29
    Views
    2,645

    Search google.

    Search google.
  12. Replies
    2
    Views
    922

    Thanks HaLCy0n, I'll look into this.

    Thanks HaLCy0n, I'll look into this.
  13. Replies
    2
    Views
    922

    Just need some advice

    I have read of a couple ways to load BMP images to the screen. But what is the best way? The way I read of, talked about first entering Video Graphics Array mode 13h, but isn't this a little bit old?...
  14. Replies
    6
    Views
    1,443

    It should be... #include #include...

    It should be...

    #include <stdio.h>
    #include <conio.h>

    int main( ) //space needed after function type
    {
    int cnt = 0;
    float sum,x;
    printf("The sum of your numbers will be...
  15. Replies
    5
    Views
    1,732

    Thanks for your help, appreciate it.

    Thanks for your help, appreciate it.
  16. Replies
    5
    Views
    1,732

    Text color

    I am using Dev-C++ to compile my source. I want to change my text color in dos text mode but I cannot use textcolor( ) with conio.h to do it because only Borland compilers can use that function. Is...
  17. Replies
    2
    Views
    1,597

    ahh, I knew it was something simple. Thanks again...

    ahh, I knew it was something simple. Thanks again for all your help.
  18. Replies
    2
    Views
    1,597

    Escape sequence of interest?

    Saying I c-out the following...

    cout << "Is there such a";

    Then I call the escape sequence \b... now the cursor will be under 'a' in my static string. Saying I wanted to erase 'a' now, but...
  19. Replies
    6
    Views
    1,777

    Here is something simple you can do. Just add the...

    Here is something simple you can do. Just add the header file conio.h and at the end of your source code, just before return 0; add the line getch(); this will wait until you press any key, then...
  20. That worked excellent! Thanks!

    That worked excellent! Thanks!
  21. Thanks for the link. I will check this out.

    Thanks for the link. I will check this out.
  22. Simple question. Help will be appreciated.

    I am running under windows XP and using Dev-C++. Since XP is a strictly windows OS I cannot call BIOS anymore. :mad: I am building a program where I need to control the cursors X and Y position on...
Results 1 to 22 of 26
Page 1 of 2 1 2