Search:

Type: Posts; User: Kerooker

Page 1 of 2 1 2

Search: Search took 0.12 seconds.

  1. Replies
    6
    Views
    1,349

    Re: JComboBox size?

    The third column was a mistake :P

    No, not all with the same format. Some are Label-Jbox ; some are Label-JTextBox .... Some are with imageicon.. That's why I needed the GridLayout
  2. Replies
    6
    Views
    1,349

    Re: JComboBox size?

    I got the part of the content pane! Thanks for that!!

    About the FlowLayout, could you tell me how to make a linebreak on a FlowLayout? Because I need 15 lines of information, and making a...
  3. Replies
    6
    Views
    1,349

    JComboBox size?

    I'm trying to set a maximum size in a JComboBox, but I can't do it.
    I'm willing to do it so I can put the selecter next to a JLabel, but it's going into the second line, and not following the...
  4. Replies
    5
    Views
    1,061

    in need of some exercices?

    Hello Java Programming Forums community!

    I'm a begginer in java, and have just finished my first 'big' project, but I did it with a lot of help, because I failed in some basics concepts of Java....
  5. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    I made it the way I wanted.
    I published the source code in [Java] 2014 cup timer by Kerooker - Pastebin.com

    Thanks very much Norm for the help!
    I don't know if you can do it, but you can now...
  6. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    Couldn't find anything in this How to Set the Look and Feel (The Java™ Tutorials > Creating a GUI With JFC/Swing > Modifying the Look and Feel)

    Any directions?

    Could not find how to change the...
  7. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    Working as expected!!

    Now, finally, to change font, font colour, background image.... How can I change the frame's layout?
  8. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    package cupTimer;

    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.GregorianCalendar;
    import javax.swing.* ;

    public class myTimer {
    public static...
  9. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    But if I leave the frame out of the timer method, I cannot call the values in the main method, as they're in different methods

    Should I put the frame before the rest?
  10. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    No error message, just not working.

    I want the frame to be updated every second with the new information, so it can be counted down second to second.
  11. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    I tried this


    package cupTimer;

    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.GregorianCalendar;
    import javax.swing.* ;
  12. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    It's not possible, or else I would need to cal the label after the main method ended, and it's not possible to declare the Jframe before the timer...

    I need a way to use a variable from the main...
  13. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    label.setText(teste);
  14. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    label cannot be resolved - line 24
  15. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    I tried doing it:


    package cupTimer;

    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.GregorianCalendar;
    import javax.swing.* ;
  16. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    No, the two calls are with the same name. The variable is named 'teste', and I tried to call 'teste', just copied the wrong name from the error, sorry.
  17. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    package cupTimer;

    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.GregorianCalendar;
    import javax.swing.* ;

    public class myTimer {

    public...
  18. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    I can't, in that way label won't be resolved to a variable. (it's defined in other method...)

    @@Edit

    I tried putting all the JPane inside the main method, but that won't work either (no error...
  19. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    package cupTimer;

    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.GregorianCalendar;
    import javax.swing.* ;

    public class myTimer {

    public...
  20. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    It won't get the value, it says that "teste" cannot be resolved to a variable
  21. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    I tried
    label.setText(teste);

    But it won't work, I also tried label.setText (taskPerformed.getText);
    But I 'knew' it wouldn't work... What's the value I need to get?
  22. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    package cupTimer;

    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.GregorianCalendar;
    import javax.swing.* ;

    public class myTimer {

    public...
  23. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    Should I create another file for it? Or isn't it possible?
  24. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    Ah, alright.
    I don't have any idea on how to start a GUI, have only been experimenting in Eclipse's IDE, never ran something expecting it to work... Would you send me a tutorial, or even some tips?
  25. Replies
    80
    Views
    3,587

    [SOLVED] Re: Need some help in a timer

    I made it work with this:


    package cupTimer;

    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.GregorianCalendar;

    import javax.swing.* ;
Results 1 to 25 of 46
Page 1 of 2 1 2