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

Search:

Type: Posts; User: aminur

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    739

    ....

    ....
  2. Replies
    3
    Views
    810

    problem with ant make file

    Hi,

    This is what I have in build.xml:

    <signjar alias="myalias" jar="${app.name}.jar" keypass="mykeypass" keystore="${build.home}/storepath" signedjar="${build.home}/sgn${app.name}.jar"...
  3. Replies
    3
    Views
    1,720

    Take it as javax.swing.SpinnerDateModel[jdk...

    Take it as

    javax.swing.SpinnerDateModel[jdk 1.4]

    Still it is the same.
  4. Replies
    3
    Views
    1,720

    jspinner increment

    Here is the code for JSpinner.


    import java.awt.*;
    import java.text.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.text.*;

    import java.util.Calendar;
  5. Replies
    4
    Views
    2,339

    Maskformatter to allow every character.

    Hi,

    I am using a mask formatter for my jformatted text field.
    Now the mask string that I am using for this mask formatter is taken from user Input.

    Now if user enters nothing in the input i...
  6. In any case we are not going to see the end of...

    In any case we are not going to see the end of the world...... :D
    Angels have to worrry......
  7. Here is the solution ...

    Here is the solution

    http://www2.gol.com/users/tame/swing/examples/JTableExamples1.html
  8. is it normal behaviour of simpledateformatter???

    Here is the code.



    SimpleDateFormat tempF = new SimpleDateFormat("MM/dd/yyyy");
    tempF.setLenient(false);
    JFormattedTextField tempt = new javax.swing.JFormattedTextField(tempF);


    Now if i...
  9. Replies
    2
    Views
    1,350

    Add ur JTable to a JScrollPane scroll and return...

    Add ur JTable to a JScrollPane scroll and return this scrollPane in modifiedTable();
    Calculate ur data with respect to this.


    It will work.
  10. Number of days in Calendar.ERA,Calendar.MONTH

    Hi,

    I have two Date Instance
    Date startDate and Date endDate.
    Now user will be specifying some step size to go from startDate to endDate in a JSpinner.

    Now i have to validate that the step...
  11. Replies
    1
    Views
    728

    U can try using Jdeveloper by www.oracle.com. ...

    U can try using Jdeveloper by www.oracle.com.

    They provide the drawing of graph
  12. how to allow only date type in JFormattedtextfield

    Hi I am using...
    DateFormat format = new SimpleDateFormat("MM/dd/yy");
    DateFormatter df = new DateFormatter(format);
    JFormattedTextField ftf1 = new JFormattedTextField(df);


    but
    it allows me...
  13. Replies
    2
    Views
    3,489

    I have tried that and in the...

    I have tried that and in the getTreeCellRendererComponent method i have disabled the node which i want not to be selected.
    But unfortunately I dont have to use this method and I am supposed to use...
  14. Replies
    2
    Views
    3,489

    node of Jtree..how to disable it

    Hi,
    I have a Jtree and I want to prevent user selecting some nodes of this tree.I did this by adding a TreeSelectionListner to the tree and then in the value changed method of this listner ,I...
  15. Replies
    3
    Views
    1,145

    okey did it like this... in the public...

    okey did it like this...

    in the

    public void valueChanged(javax.swing.event.TreeSelectionEvent event);

    method of TreeSelectionListener impelentation get the
    TreePath tp = event.getPath();...
  16. Replies
    3
    Views
    1,145

    Re: jTree

    Thanks for the idea.!!! No problem with the english and that can be done by that method.But i missed out mentioning there that i want to use valueChanged() method of the TreeSelectionListener so...
  17. Replies
    3
    Views
    1,145

    disable node of a JTree

    How can we disable node of a jTree to prevent it from being selected?
  18. Replies
    1
    Views
    7,869

    multiple selection in Jlist

    Hi,

    I have a JList whose data is set by setListData(Object [] ) method.

    Now if i have another object [] say arr2 so that i have to select those items and to keep the selection in the JList how...
  19. Replies
    0
    Views
    743

    jnlp error/webstart

    in what case we get following error in java webstart
    JNLPException[category: Security Error : Exception: null : LaunchDesc: null ]

    at...
  20. Replies
    2
    Views
    4,565

    Mnemonic keys in Joption pane

    Hi,
    Can i add mnemonci keys to buttons in JOptionPane.
    I can make an option pane as
    Object [] options = {"Come", "Go"};
    int action = JOptionPane.showOptionDialog(null, "What you want to do?",...
  21. Replies
    0
    Views
    532

    printing a striked string

    Hi,

    I am using an attributed java.text.AttributedString to draw a striekd string by setting its attribute as
    attributedString...
  22. Replies
    0
    Views
    491

    ...

    ...
  23. Thread: same sessionId

    by aminur
    Replies
    1
    Views
    744

    same sessionId

    Hi,

    I have two application running in a single browser(Say two login pages in Internet explorer separated in frames).
    Now i sent a request to login from both the frames.
    After getting the...
  24. Replies
    0
    Views
    667

    Problem in printing JTable

    Hi,
    I have a JDialog.In that dialog i have a JPanel in whcih I have added a JLabel and a JTable(JTable is being added to the scroll pane and in turn scroll pane is added to panel)
    Now I have a...
  25. Thread: Two JComboBoxes

    by aminur
    Replies
    1
    Views
    590

    Hi I don't know how u are populating the second...

    Hi I don't know how u are populating the second combo box.I have done the similar thing in whcih second combo is populated when the item of combo A is changed.I have written the code in item state...
Results 1 to 25 of 98
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured