Search:

Type: Posts; User: Liam Battle

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,335

    I suggest: use the fstream, and use BINARY...

    I suggest: use the fstream, and use BINARY MODE... (if you are unfamilar with the fstream, as i believe u are, maybe you want to use text mode).

    at that time format your output into the file with...
  2. Replies
    10
    Views
    1,750

    C# is a .net framework language. It has...

    C# is a .net framework language. It has excellent support for managed code and security containers on the .Net Framework.

    The name is a bit misleading, but the fact remains that C++ is still a...
  3. Replies
    23
    Views
    2,677

    I think you are confused about "knowing" C++......

    I think you are confused about "knowing" C++...
    there are tons of people here that Know the Syntax 100%,

    but its impossible to know every library and function 100% , since they are created...
  4. Replies
    4
    Views
    1,347

    so what are you asking ? how to write a loop? ...

    so what are you asking ?
    how to write a loop?

    also note the global variable i see, omg please dont use that !
  5. Replies
    7
    Views
    2,376

    Hmm i dont know any reliable C++ channels... ...

    Hmm i dont know any reliable C++ channels...

    im sure any C/C++ channel all major networks would have one...
    but good luck finding a mature crowd
  6. Replies
    14
    Views
    2,075

    I know the the MSVC++ 6.0 compiler has cut out...

    I know the the MSVC++ 6.0 compiler has cut out dos graphics, it only supports win32 console graphics.. (text crap).

    You maybe able to get around it but im not sure.. just remember reading that it...
  7. Replies
    23
    Views
    2,677

    of course there is master programmers... ...

    of course there is master programmers...

    first off you should know the syntax 100% regardless if you are a master or not...

    secondly, I think John Carmack is a master C++ programmer...
    Im...
  8. Thread: win32 api

    by Liam Battle
    Replies
    13
    Views
    1,954

    Well the windows programming forum is a start ;)...

    Well the windows programming forum is a start ;)

    and if you want to get into MFC a book called : programming windows with MFC second edition by Jeff Prosise, is prolly the best book you can...
  9. Replies
    2
    Views
    5,700

    Thanks bud... In 3 years i never had to changed...

    Thanks bud...
    In 3 years i never had to changed the console cursor style... haha... too used to win32-GUI and my own home made console routines...
  10. Replies
    2
    Views
    5,700

    Set Console Cursor Style ?

    Quick question, whats the function to set the console cursor style... (ie: blinking block instead of blinking line)

    thanks in advance.
    ;)
  11. Replies
    6
    Views
    1,458

    Well you can achieve this by bitwise operators......

    Well you can achieve this by bitwise operators... or a by a strict copying. Remember that a char is 8bits and a long int a 32-bits...
  12. Replies
    5
    Views
    1,333

    here is a recent post on the subject that you...

    here is a recent post on the subject that you just asked ...
    he has an example of *.wav playback...

    http://www.cprogramming.com/cboard/showthread.php?s=&threadid=18180

    or a website here:
    ...
  13. Replies
    17
    Views
    2,061

    haha i love it... lets get everyone in here for a...

    haha i love it... lets get everyone in here for a Free for all...
  14. Replies
    17
    Views
    2,061

    haha what is this a carebear forum? "this was...

    haha what is this a carebear forum?

    "this was un called for" hahahaha...

    there is a tissue on the desk there for ya... to the left a little bit..
  15. Replies
    17
    Views
    2,061

    Actually it implies the loop is infinite bud,...

    Actually it implies the loop is infinite bud, read it back.. it never says he exits the program or the function early...

    in either case both are not recommended, the infinite loop is obviously...
  16. Replies
    17
    Views
    2,061

    well think of the effects of an infinite loop. ...

    well think of the effects of an infinite loop.

    then ask yourself is this good ?

    why people have to get all hot and bothered about it is a question for the DH.

    btw ygfperson your qoute rox ;)
  17. Replies
    3
    Views
    1,265

    nope not bad, i do that myself, a function should...

    nope not bad, i do that myself, a function should be small and concise...

    just make sure you pass by reference all the time.. you dont want to keep passing by value and wasting resource time
  18. Replies
    17
    Views
    2,061

    Uraldor, hey ***got, dont get into someone's...

    Uraldor, hey ***got, dont get into someone's business u dumb ****... im not talking to the original poster anyhow, so learn how to follow post's...

    and leaving an infinite loop is bad code.
    ...
  19. Replies
    17
    Views
    2,061

    Barjor, you obviously must be new. leaving a...

    Barjor, you obviously must be new.
    leaving a loop in a infinite process is just bad code.
  20. Replies
    17
    Views
    2,061

    did you just ask if its bad to have an infinite...

    did you just ask if its bad to have an infinite loop?

    that is hallarious
  21. Replies
    12
    Views
    1,685

    your gotoxy function looks fine... try...

    your gotoxy function looks fine...

    try initializing the HANDLE in main()
  22. Replies
    14
    Views
    2,807

    im not sure what the hell your question is but,...

    im not sure what the hell your question is but, if you want to ouput an integer one digit at a time ( regardless of what stop they are in the int array) just convert it with itoa() and then output...
  23. Replies
    4
    Views
    1,140

    consh = GetStdHandle(STD_OUTPUT_HANDLE); void...

    consh = GetStdHandle(STD_OUTPUT_HANDLE);
    void gotoRC(int row, int col)
    {
    COORD coord;
    coord.X = col;
    coord.Y = row;
    SetConsoleCursorPosition(consh,coord);
    }
  24. Replies
    15
    Views
    3,087

    Well bud before you do anything learn how to code...

    Well bud before you do anything learn how to code a win32 GUI... pure DOS applications (not win32 bit console applications) are written in 16bit code. now, when translating them into a win32 gui, you...
  25. Replies
    19
    Views
    2,143

    wow there are more and more of these poping up...

    wow there are more and more of these poping up every week...
    i wish there was some kinda warning message when people register
Results 1 to 25 of 115
Page 1 of 5 1 2 3 4