Search:

Type: Posts; User: Fendaril

Page 1 of 3 1 2 3

Search: Search took 0.14 seconds.

  1. Replies
    11
    Views
    3,834

    [SOLVED] Re: Trojans with last few updates of NetBeans

    Do a full scan and run Malwarebytes
  2. Replies
    7
    Views
    2,715

    Re: Can anyone whip up a code for this?

    Can I at least write part of the code. Just the class to get him started?
  3. Replies
    7
    Views
    2,715

    Re: Can anyone whip up a code for this?

    Hey. I will write a code for this. Can you tell me how many numbers in total you enter? It only says first five numbers. it doesnt say how many numbers to take. Is it any amount of numbers?
  4. Replies
    7
    Views
    3,480

    Re: Java Programming For Kids

    I have no clue what that means.......
  5. Replies
    7
    Views
    3,480

    Re: Java Programming For Kids

    Freaky Chris if you have any children maybe you can make then read through that whole entire book.
    .
  6. Replies
    16
    Views
    3,875

    Re: Java hangman game help...

    Try putting a print statement when you read in the file using a console thing. That is a good way of pinpointing run time errors.
  7. Replies
    16
    Views
    3,875

    Re: Java hangman game help...

    NUllPointerException means that one of your objects are null and you are trying to use it somewhere. ALWAYS check if an object is null or you get that exception.

    Check to see if the objects you...
  8. Replies
    16
    Views
    3,875

    Re: Java hangman game help...

    The thing is we need all the classes you used to aid in your program.
  9. Replies
    6
    Views
    2,089

    Re: A simple test for you all

    1-c
    2-d
    3-c
    4-b
    5-d
    6-c
    7-d
    8-b
    9.a-true
    b-false
  10. Replies
    2
    Views
    3,174

    Re: Want to move my button away from center.

    Thanks for the quick response.
  11. Replies
    7
    Views
    2,295

    Re: Completely New to Java

    Java runs off of a vm so what it compiles to its java byte code. This byte code is then read by a non-native program and turned into a file only read by java. AKA a .jar file. If you want to make exe...
  12. Replies
    7
    Views
    1,755

    Re: Please welcome Freaky Chris to the JPF team

    I look forward to your future contributions chris.
  13. Replies
    2
    Views
    3,174

    Want to move my button away from center.

    Hello. I am trying to move my button to the topmost part of my application's window.



    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;

    public class test extends JFrame{
  14. Replies
    9
    Views
    2,417

    Re: why should i choose java over others?

    No language is better then the other. java has it uses and so do ruby and python. And to be honest ruby and python are scripting languages. I think you should use whatever language you need to.
  15. Replies
    5
    Views
    3,291

    Re: adding main method to a code

    There are a few errors in your code. First is in your produceNumber() method. Select has no type. From the looks of it you may want to define select as an integer before returning it inside the...
  16. Replies
    2
    Views
    4,129

    Re: Differences Between Java and C,C++

    One MAIN difference you should know is that java is not a native programming language. It runs off of a

    VM(virtual machine) therefore you cannot build native code with it or do system specific...
  17. Replies
    2
    Views
    1,873

    Oracle to Buy Sun

    Oracle to Buy Sun

    Yep its final. Sun will close sometime over this summer.
  18. Replies
    36
    Views
    7,326

    [SOLVED] Re: Physics Program

    yes. Hope it works.
  19. Replies
    36
    Views
    7,326

    [SOLVED] Re: Physics Program

    Did you import?

    import java.util.*;
  20. Re: System Wide Mouse/Keyboard Hook

    I doubt this is possible in java since it runs off of a Vm. I could be wrong though.
  21. Replies
    36
    Views
    7,326

    [SOLVED] Re: Physics Program

    Class Force
    {
    Public double CalculateForce(double first, double second)
    {
    return first * second;
    }
    Public Static void main(String args[])
    {
    Force formula=new Force();
    Scanner read=new...
  22. Replies
    36
    Views
    7,326

    [SOLVED] Re: Physics Program

    Class Force
    {
    Public int CalculateForce(double first, double second)
    {
    return first * second;
    }
    Public Static void main(String args[])
    {
    Force formula=new Force();
    Scanner read=new...
  23. Replies
    36
    Views
    7,326

    [SOLVED] Re: Physics Program

    What is the error.
  24. Replies
    36
    Views
    7,326

    [SOLVED] Re: Physics Program

    Class Force
    {
    Public int CalculateForce(double first, double second)
    {
    return first * second;
    }
    Public Static void main(String args[])
    {
    Force formula=new Force();
    Scanner read=new...
  25. Replies
    36
    Views
    7,326

    [SOLVED] Re: Physics Program

    That is everything.
Results 1 to 25 of 56
Page 1 of 3 1 2 3