CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: iiSoMeGuY 7x

Page 1 of 4 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    3
    Views
    4,491

    Re: Simple Yet Annoying Problem

    I tried this out exactly how you put it (I am not familiar with JFrame) and I get an error saying that cannot find symbol- method setDefaultCloseOperation(int). So I'm looking into the JFrame class...
  2. Replies
    3
    Views
    4,491

    Simple Yet Annoying Problem

    Background:
    I am suppose to be working on a group project for school using Bluej, but guess who's stuck doing all the work? That's right, me. Well, I have the program (a game of Hangman) nearly...
  3. Replies
    3
    Views
    5,844

    Re: Cin Problem, I think Overflow?

    Now you sir, are my new best friend! I had no idea that was the issue, no wonder I couldn't get anything else to work! Thank you so much, the program works perfectly now and the movie shall continue...
  4. Replies
    3
    Views
    5,844

    Resolved.

    I'm making a quick program for my English class's movie that involves me hacking into a bank and stealing money (of course this doesn't actually hack anything), but I haven't programmed in C++ in a...
  5. Replies
    10
    Views
    2,325

    Re: Ordering an Array of ints

    Well, it's a little different from I'm used to, but it does look promising, thanks for the tip :D
  6. Replies
    10
    Views
    2,325

    Re: Ordering an Array of ints

    Very true, without Google my programs wouldn't even run (my book doesn't teach system() commands), but even so I only use Google as a last resort. This is because I want to learn stuff in order, and...
  7. Replies
    10
    Views
    2,325

    Re: Ordering an Array of ints

    Dude, I love you (no homo), I totally missed that! I now have the program working and just updated my post :D
  8. Replies
    10
    Views
    2,325

    Re: Ordering an Array of ints

    Well, it's not for a class, it's from a book I bought Starting Out With C++ (4th Ed.), and I'm in the process of self teaching myself and have no one else to ask :(
    I also haven't learned how to do...
  9. Replies
    10
    Views
    2,325

    Ordering an Array of ints

    Assignment: Test Averaging
    Write a program that dynamically allocates an array large enough to hold any number of test scores the user wishes to enter. Once all the scores are entered, the array...
  10. Replies
    23
    Views
    3,866

    Re: src file won't compile anymore

    a non-ending program?
    not really sure without looking at the code, but from what you're saying, if the compiler just "sits forever" its probably because you never ended the program...
  11. Replies
    3
    Views
    1,506

    Re: How do I open a text file in notepad?

    Create File:


    #include <iostream>
    #include <fstream>

    using namespace std;

    int main()
    {
  12. Replies
    3
    Views
    1,506

    Re: How do I open a text file in notepad?

    or fstream...
  13. Replies
    5
    Views
    960

    Re: Array Subscript Errors

    how is the index out of bounds?
  14. Replies
    5
    Views
    960

    [RESOLVED] Array Subscript Errors

    Ok, im trying to make a program that takes up to 10 letters entered by the user and if they're lowercase it will make them uppercase, but I have a problem; when I try to run the code below, I get 2...
  15. Replies
    6
    Views
    607

    Re: Find the Lowest of These

    ah, ok, i get it now, thanks for the tip
  16. Replies
    6
    Views
    607

    Re: Find the Lowest of These

    1.) This is my first assignment to get me started on function prototypes.
    2.) How is this bad form/not necessary?
  17. Replies
    6
    Views
    607

    Re: Find the Lowest of These

    wow, i cant believe i didnt think of that, lol...
    thanks man :D
  18. Replies
    6
    Views
    607

    Find the Lowest of These

    Assignment: Lowest Score Drop

    This program is to calculate the average of a series of test scores, where the lowest score in the series is dropped. It should use the following functions:...
  19. Replies
    2
    Views
    30,671

    JavaScript Re: JS linking help

    hay, thanks for the link. im self-taught so im not the best ;)
    as for the code; i replaced the <style> with a <link> and it works fine, as for the JS link....well....i just forgot to upload it on my...
  20. Replies
    2
    Views
    30,671

    JavaScript JS linking help

    OK, i have 2 questions that are basically about the same concept, linking. I know this is a very basic principle, but i really never learned how (as far as i know, these links work fine), so please...
  21. Re: Need to be Creative and artistic to go into graphic designing?

    i personnaly dont really know, but my uncle owns his own company that makes custom graphics for other companies/people, and he came over to my dad's house one day when i was making a website for my...
  22. Replies
    4
    Views
    711

    Re: Quick O/I Question

    alright then, thanks guys, just wondering if there was a quick command or something, but if i need to mess with a interface, then i dont need it that much...
  23. Replies
    4
    Views
    711

    Quick O/I Question

    is it possible to ask a question, but display the cursor above said question?

    for example:


    cout << "5 / 25 = ";
    cin >> answer;


    in the code snippet above, the cursor will...
  24. Replies
    10
    Views
    1,023

    Re: Problem with re-running a program

    lol, i know. i didnt use it for programs i expected other people to use, just for practice programs i was experimenting with or whatever i was doing at the time. i dont do it anymore, just when i...
  25. Replies
    10
    Views
    1,023

    Re: Problem with re-running a program

    well, i did when i first started programming, pretty much for extra practice, and i also added the rerun option after the program finished.
    --maybe that's why?
Results 1 to 25 of 85
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured