Search:

Type: Posts; User: liron50

Search: Search took 0.08 seconds.

  1. Replies
    4
    Views
    1,048

    [SOLVED] Re: Convert Formatted String to Integer

    Hi,
    Thanks I used the parse method, and it seems working.

    long newlong= longFormat.parse(strLong).longValue();
  2. Replies
    4
    Views
    1,048

    [SOLVED] Re: Convert Formatted String to Integer

    Hi Norm,
    Can you be more specify?
    Is the conversion that I'm trying is not possible?
  3. Replies
    4
    Views
    1,048

    [SOLVED] Convert Formatted String to Integer

    Hi,
    Appreciate any help on this issue.
    If I use the class DecimalFormat to format long number, how can I convert it back to integer?




    DecimalFormat longFormat = new DecimalFormat("#,###"); ...
  4. Replies
    2
    Views
    1,488

    Re: Highligh row in JTabel

    Hi,

    Currently I'm not changing those property at all.
    I try set them in all combination - TRUE/TRUE, TRUE/FALSE, FALSE/TRUE, FALSE/ FALSE, and doesn't seem to have effect.

    however if I comment...
  5. Replies
    2
    Views
    1,488

    Highligh row in JTabel

    hi,

    I'm using JTabel and AbstractTableModel to show data from DB.
    At the first version I simply show the data, and in this case when I click single row, this row was highlighted (the whole row)....
  6. Replies
    4
    Views
    2,048

    Re: preparedStatement.executeBatch failed

    OK. thanks.
  7. Replies
    4
    Views
    2,048

    Re: preparedStatement.executeBatch failed

    Hi,
    thanks for reply indeed this was the problem.

    but why do have to set auto commit false in order to work with bulk?
  8. Replies
    4
    Views
    2,048

    preparedStatement.executeBatch failed

    Hello,
    I'm having problem with this function and I think I'm doing something basically wrong.

    I want to insert some records(200+) to DB in bulk. I don't get any errors or exception in the process...
  9. Replies
    17
    Views
    2,719

    Re: Hiding\Showing parts of the frame

    Again it's work.
    But if the components that I set his visible to false is JPanel it's enough to set it's visible, if it's JScrollPane I also need to call pack();

    you can run the code example and...
  10. Replies
    17
    Views
    2,719

    Re: Hiding\Showing parts of the frame

    Yes,

    only in case of setting the visibility of JScrollPane I have to call method pack() of the frame, to see the change.
  11. Replies
    17
    Views
    2,719

    Re: Hiding\Showing parts of the frame

    oo my, just now I understand why it's happen,
    because when I do it in the second way:
    add(new JScrollPane(southPanel), BorderLayout.SOUTH);

    I actually had the scrollPane to the frame, and after...
  12. Replies
    17
    Views
    2,719

    Re: Hiding\Showing parts of the frame

    But you did help...
    thanks again
  13. Replies
    17
    Views
    2,719

    Re: Hiding\Showing parts of the frame

    by the way, it's acting the same also with GridBagLayout.
  14. Replies
    17
    Views
    2,719

    Re: Hiding\Showing parts of the frame

    I found where the problem.
    I wrote little program with 5 panel, and 5 buttons that each button make panel hide\show and indeed the panel expand as I want.

    But when I add the panels with...
  15. Replies
    17
    Views
    2,719

    Re: Hiding\Showing parts of the frame

    I don't sure,
    I am using currently GridBagLayout. but before that I try to use BorderLayout and that also won't help.
    After I set the visibly for component into false, his place become empty.
  16. Replies
    17
    Views
    2,719

    Re: Hiding\Showing parts of the frame

    what I'm trying is similar to the functionality in the eclipse environment.
    if, for example I have four windows opening (like the first picture - the explorer the code, the javadoc and the task list...
  17. Replies
    17
    Views
    2,719

    Re: Hiding\Showing parts of the frame

    but I want that the other components will re size and fill the space,
    I don't want that the frame will be smaller.
    if I will calculate it, I will need to take into account all possibilities and...
  18. Replies
    17
    Views
    2,719

    Hiding\Showing parts of the frame

    I have JFrame with some components, and I'm trying to supply methods for
    hiding\showing each component.
    I set the visible of the component to false - witch make him indeed invisible,
    and them I...
  19. Replies
    0
    Views
    1,404

    Need advice for good programming

    Hello all, I'm new here.

    I currently writing project in java for graduation.
    It's trivia game. some clients connect to server and play with each other.
    The program use RMIfor communication, and...
Results 1 to 19 of 19