Search:

Type: Posts; User: Reem

Search: Search took 0.09 seconds.

  1. Thread: GUI problem

    by Reem
    Replies
    6
    Views
    1,564

    Re: GUI problem

    list is not a Jlist.
  2. Thread: GUI problem

    by Reem
    Replies
    6
    Views
    1,564

    Re: GUI problem

    Thank you all. What I am doing is that i created a public class that extends Jpannel and I am adding my components to it. It works perfectly before minimising the window:...
  3. Thread: GUI problem

    by Reem
    Replies
    6
    Views
    1,564

    GUI problem

    I created a GUI that extends JFrame. The GUI has several textfields, buttons, labels and lists. The problem arises when i minimise the window and then maximise it. The textfields stay in place but...
  4. Thread: class extending

    by Reem
    Replies
    4
    Views
    1,888

    class extending

    I need my class to extend JFrame and ApplicationFrame. Is that possible? How?
  5. Thread: JFreeChart XYLine

    by Reem
    Replies
    8
    Views
    3,960

    Re: JFreeChart XYLine

    Thank you very much forall your effort, I managed to find a solution. Thanx
  6. Thread: JFreeChart XYLine

    by Reem
    Replies
    8
    Views
    3,960

    Re: JFreeChart XYLine

    I am trying to get an example on SymbolAxis. I think it may replace the date with a string on the X-axis. Do you know where i could find such examples? thank you
  7. Thread: JFreeChart XYLine

    by Reem
    Replies
    8
    Views
    3,960

    Re: JFreeChart XYLine

    with the TimeSeries I managed to plot the date on the x-axis but not the date and time together. I converted the date i retrieve from the database into substrings:

    RDate=new...
  8. Thread: JFreeChart XYLine

    by Reem
    Replies
    8
    Views
    3,960

    Re: JFreeChart XYLine

    That is, I want to display the patient's temperature (y-axis) at different times of the day and on different days(x-axis)
  9. Thread: JFreeChart XYLine

    by Reem
    Replies
    8
    Views
    3,960

    Re: JFreeChart XYLine

    Hey..
    I want to display the day n time i obtained from a database (2 strings concatenated) on the x-axis and the temperature on the y-axis.
  10. Thread: JFreeChart XYLine

    by Reem
    Replies
    8
    Views
    3,960

    JFreeChart XYLine

    Dear All,
    I am using JFreeChart to plot an XYLine using XYSeries.
    i.e:int i=0;
    XYSeries series=new XYSeries(temperature);
    series.add(i, Integer.parseInt(RTemp));

    instead of "i", I want to put...
  11. Re: calling a java a class connected to derby from a batch file

    It worked! thanx a million...just added the quoutes :D
  12. Re: calling a java a class connected to derby from a batch file

    I am using netbeans to and the database connection is done within the java class to derby.In what form must i write the classpath?
    I tried this but it didnt work:
    cd\
    cd "HourlyTempReg"
    java...
  13. calling a java a class connected to derby from a batch file

    Hi all,

    I've created a java class that is connected to a database (derby). It works perfectly when run from netbeans. After that I created a batch file that calls this class and put them in a...
Results 1 to 13 of 13