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

Search:

Type: Posts; User: petes1234

Page 1 of 38 1 2 3 4

Search: Search took 0.06 seconds.

  1. Re: Deal or No Deal Computer assignment not working

    It would help if you 1) posted your code with code tags (read the faq on this), and most importantly 2) ask an actual question. Most of us (except for dlord) aren't able to read minds and have no...
  2. Replies
    4
    Views
    3,606

    Re: Refresh Button?

    similar response to the cross-post here: http://www.java-forums.org/new-java/15650-refresh-button.html
  3. Replies
    6
    Views
    2,190

    Re: Help making an Insurance Calculator

    We're usually best at answering specific questions, but it sounds to me as if you are somewhat lost at sea and foundering a bit, and your code appears confirms this. Why not talk to the teacher to...
  4. Thread: OOP with GUI

    by petes1234
    Replies
    4
    Views
    1,091

    Re: OOP with GUI

    Though ajbharani has a valid point: the more specific the question, the greater the chances of getting a specific and helpful answer. YMMV.
  5. Replies
    19
    Views
    2,034

    Re: trouble with wat happens and y it happens?

    Perhaps this is why uj has been banned repeatedly from the Sun Java fora? Just a thought.
  6. Replies
    2
    Views
    6,451

    Re: Creating a Oval class?

    the client class simply has a main method, creates one or more Oval objects and tests them.

    Regarding help: what specific questions do you have?
  7. Replies
    10
    Views
    9,828

    Re: Build a 12 hour clock

    public ClockDisplay()
    {
    hours = new NumberDisplay(13);
    minutes = new NumberDisplay(60);
    updateDisplay();
    }

    13 doesn't pass the smell or taste test. For me 12...
  8. Replies
    3
    Views
    3,429

    Re: Mandelbrot Set Help needed

    Since you're looping through a 2-dimensional space, I'd use two nested for loops both going from 0 to 4, and using simple math to use each index to calculate the appropriate x and y values.
  9. Replies
    5
    Views
    1,102

    Re: os specific info need [winxp]

    cross-posted in the Sun forums.

    My answer here and there are the same: Java is not the best tool for this. Consider using C# instead (and glad to see dlorde giving the same advice).

    Also...
  10. Replies
    6
    Views
    3,808

    Re: Students lessons in blueJ

    Consider putting some code within this for loop:


    for(LabClass labClass : labClasses) {
    }

    that prints out the names of the classes. Right now you just have an empty loop.

    One other...
  11. Replies
    4
    Views
    1,557

    Re: Easy Q : Java 2D Game

    and so was PeejAvery :) (or at least his comment could apply just as well to game development).
  12. Replies
    5
    Views
    10,655

    Re: Nested Loops Triangle Pattern Help

    hint 2: one of these lines posted above is wrong:


    else
    {
    starStartPosition--;
    starPosition++;
    }
  13. Replies
    10
    Views
    1,441

    Re: Beginner: Making a Timer

    Learning programming is somewhat similar to learning mathematics. If you dive into a calculus book and find it too complicated, then you've probably tried to overextend yourself and you have to back...
  14. Re: FileNotFoundException + Exception in thread 'main'

    What happens if you run this program?:


    import java.io.FileInputStream;

    public class FileDirectory
    {
    public static void main(String[] args)
    {
    String userDir =...
  15. Replies
    10
    Views
    1,441

    Re: Beginner: Making a Timer

    You bet! I've got this link at the top of my bookmarks, it's used so much:

    The Sun Java tutorials: Sun Java Tutorials
    The Sun tutorial "Really Big Index": The Really Big Index
    The Listener...
  16. Replies
    10
    Views
    1,441

    Re: Beginner: Making a Timer

    Perhaps it's time to step back a bit and hold off on creating your timer until you do understand ActionListeners first. You'll find a great tutorial on ActionListeners and Listeners in general at...
  17. Replies
    11
    Views
    2,538

    Re: need help with this program

    Another bit of advice:

    1) When posting code, use code tags so that your code is readable. To do this, place [code] above your code and [/code] below your code.
    2) Don't post code without...
  18. Re: How can call dll function written vc++ regulardll using shared mfcdll using j/invoke

    hey idjot, please stop spamming this forum!
  19. Replies
    2
    Views
    1,392

    Re: Spawn new window on button click: how?

    NetBeans can help construct the JFrames and JDialogs, but I don't think it will automate what you are trying to do. Regardless if it did or not, you don't want the tool to be hindering the learning....
  20. Replies
    3
    Views
    1,674

    Re: help with a worksheet

    I'm getting right on it and will have it done in a jiffy. Why don't you help yourself to some donuts and coffee while you wait?
  21. Replies
    1
    Views
    948

    Re: Event Listening another application.

    Also cross-posted at the forums.sun.com, and lord knows where else.
  22. Replies
    7
    Views
    2,178

    Re: Timer & Recursion

    Please do not cross-post questions in multiple forums: forums.sun.com

    This will frustrate anyone who tries to help you only to find out later that the same answer was given hours ago in a...
  23. Replies
    3
    Views
    1,294

    Re: Schadenfreude is such a guilty pleasure

    You shouldn't be posting this here as this is out and out cheating. Abuse is being reported. Your options are such:

    1) Go to your teacher and ask for an extension. After obtaining it, get a...
  24. Thread: I am lost

    by petes1234
    Replies
    2
    Views
    1,119

    Re: I am lost

    My experience here has been that we don't do very help helping those whose problems are "I'm totally lost", but rather do much better with very specific questions over specific problems. Often the...
  25. Replies
    5
    Views
    1,471

    Re: Interesting topic in JComboBox

    I guess that the OP found this topic to be so interesting that he's spammed the same question to three if not more Java forums. Naughty naughty.
Results 1 to 25 of 938
Page 1 of 38 1 2 3 4





Click Here to Expand Forum to Full Width

Featured