Search:

Type: Posts; User: JarJarBinks

Page 1 of 6 1 2 3 4

Search: Search took 0.01 seconds.

  1. Thread: d3dfont.h

    by JarJarBinks
    Replies
    5
    Views
    2,175

    just out of curiosity, you trying to view the...

    just out of curiosity, you trying to view the source
    to a cheat for some game? it appears so, i would
    like to know which game the cheat is for. im sure
    the source is very intreging but if your...
  2. Replies
    2
    Views
    1,392

    on efnet and criten then have channel #c++ i...

    on efnet and criten then have channel #c++ i believe.
    i used to hang out in there and ask questions, but the people
    there get annoyed easily, lol. so if you go there make
    sure you ask smart...
  3. Thread: Tasty Java

    by JarJarBinks
    Replies
    9
    Views
    2,808

    Cool thanks, ah i just saying not a big fan...

    Cool thanks, ah i just saying not a big fan because
    comments i made a while back on a question
    about java, was just trying to keep the flames away :)

    im sure java a decent language it just...
  4. Thread: Tasty Java

    by JarJarBinks
    Replies
    9
    Views
    2,808

    Speaking of java, even though im not a big fan,...

    Speaking of java, even though im not a big fan, im interesting
    in learning it, anyone know a good free compiler? thanks
  5. Replies
    4
    Views
    7,500

    bithub, im interested, id liek to log the keys...

    bithub, im interested, id liek to log the keys while i play a game
    just so i can see how mayn tiems i actualyl pushed the button,
    be interesting.
  6. Replies
    13
    Views
    2,656

    I dont think Antz was pixar, but antz was a good...

    I dont think Antz was pixar, but
    antz was a good animated movie.
  7. Replies
    7
    Views
    10,448

    not understanding your problem you should post...

    not understanding your problem
    you should post at least partical code
    and the error your getting!
  8. Replies
    4
    Views
    933

    Thank You Both Of You Guys! c_str(), allowed...

    Thank You Both Of You Guys!

    c_str(), allowed my code to compile with no errors
    or warnings, im unable to test if it works completely
    yet for the code is not complete but it should!
  9. Replies
    4
    Views
    933

    No ive already done the modifying to the string,...

    No ive already done the modifying to the string,
    then the char will remain const!

    ah maybe thats why the forloop i did before didnt work
    i forgot the '\0' ok thanks, ill replay back if it worked!
  10. Replies
    4
    Views
    933

    NEED Quick Standard Solution!

    Simple question,
    Is there a way to convert a string
    to char* or char [255]
    either will work for me.
    I did a google search but to much junk to sort
    through came up and nothing that really...
  11. Replies
    1
    Views
    1,540

    I that card shows up as a "letter'ed" drive when...

    I that card shows up as a "letter'ed" drive when its pluged
    in then you can use TweakUI programs
    for XP, assuming you have XP or 2k3. And it has a section
    for autorun where you can select the...
  12. Replies
    1
    Views
    2,475

    Educational WebCasts

    3 Educational WebCasts

    Here's a link to the original post i found on it,
    all beginner programers should have a look,
    i know i will. :/

    It is however for C#, Visual Basic, and ASP.NET i...
  13. lol yea i forgot which section i was in. its...

    lol yea i forgot which section i was in.

    its ok though, for all we know he wanted c++ :/
  14. #include #include using...

    #include <iostream>
    #include <vector>
    using namespace std;

    int main()
    {
    vector <int> iVector;
    iVector.push_back(10);
    iVector.push_back(20);
    iVector.push_back(20);
  15. Thread: Craps game

    by JarJarBinks
    Replies
    2
    Views
    1,475

    also void main() = NO NO!@%#$@^!

    also void main() = NO NO!@%#$@^!
  16. Replies
    4
    Views
    3,325

    dont use fflush(stdin);

    dont use



    fflush(stdin);
  17. Replies
    6
    Views
    1,273

    WriteFileName.close(); all that does is...

    WriteFileName.close();


    all that does is close the file you are working with,

    For opening the file i could be wrong
    but the reason your file isnt being created i believe
    is because you never...
  18. Replies
    2
    Views
    1,497

    it looks like you got exactly what you wanted, i...

    it looks like you got exactly what you wanted,
    i dont see your problem, maybe elaborate
    and post some code?
  19. Replies
    6
    Views
    1,934

    duh, but do you think he has a clue how to open...

    duh, but do you think he has a clue how to open the file,
    from the command line..
  20. Replies
    3
    Views
    1,044

    winamp has a SDK on there site, it might have...

    winamp has a SDK on there site,
    it might have something in it to help you
    with your visualization.
  21. Replies
    6
    Views
    1,934

    should of mentioned how to fix it once in text...

    should of mentioned how to fix it once in text mode
    if he didnt know how to do that, he prolly reinstalling right now.
    :)
  22. Replies
    5
    Views
    2,639

    could try cin.getline() or

    could try



    cin.getline()


    or
  23. Replies
    18
    Views
    3,142

    char myString[30]; char myString2[50]; ...

    char myString[30];
    char myString2[50];

    fstream file;
    file.open("input.txt", ios::in);
    file.getline(myString, 30, '=');
    file.getline(myString2, 50, ';');


    will read the first line from a...
  24. Thread: Uzi

    by JarJarBinks
    Replies
    8
    Views
    2,714

    sarcasim?

    sarcasim?
  25. Thread: fscanf

    by JarJarBinks
    Replies
    3
    Views
    1,325

    fscanf

    when you say scan, i think it scans through the
    file, but it doesn't appear that way.

    if i open a file (FILE *), and then try to scan a int
    Ex.


    int myInt;
    fscanf(stream,"%ld",&myInt);
Results 1 to 25 of 137
Page 1 of 6 1 2 3 4