Melki Joe

Greenhorn
+ Follow
since Aug 29, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Melki Joe

I am having a swing application in which on a particular button click i want to execute many process, due to this reason my whole application freezes and not even able to see any components of my application it just displays a blank screen until the process is completed. Is there any remedy for this.

Thank you.
16 years ago
Dear All,

I am having a Swing application I want it to be stress tested. Can any one suggest me a suitable open source testing tool that will full fill my requirement.

Thank you.
16 years ago
Thank you very much for your solution I am working on it.
16 years ago
Thank you very much for your ideas but I think Swing worker is only available in jdk1.6 but I am using jdk1.5.

Thank you.
16 years ago
I am having a button for which i have set the hand symbol cursor by default. On clicking the button I should change the cursor symbol to hour glass until a particular process is made. Currently if I click the button the cursor is not changing it remains the same as the hand symbol but after a while at the end of processing it changes for a fraction of a second and returns to the normal cursor.

format of my code which i have used.

button.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
...
...
public void actionPerformed(ActionEvent evt)
{
setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR ) );
method();
setCursor(Cursor.getPredefinedCursor( Cursor.DEFAULT_CURSOR ) );
}
16 years ago
Thank you very much for your kind suggestion and solution.
[ December 06, 2008: Message edited by: Melki Joe ]
16 years ago
Thank you for your reply. What could be the solution to post the same topic in two forums so that I could get more suggestions.
16 years ago
Is there any condition that i should not post my queries in any other forums?
16 years ago
Dear all,

I am having a GUI where i will be having four or five buttons more than that i will be having a tree also. For each button there will be an action called, on the same time in the tree also on selecting each node of the tree an action will be performed. But for me the requirement is when I click one button then the whole GUI should freeze so that no other action can be performed until the process of this buttons action is performed.

Kindly give me an idea regarding this.

Thank you.
16 years ago
Dear all

I am in need of an ant script which should create a jar file of some packages and then it should create a war. In the war the already created jar should also be added. Help me in this issue.

Thank you.
16 years ago
Yes, you both are right I think rob have now got my requirement. I will try your suggetion. But still I am eager to know is there any other easy way to do this, like drawing a rectangle and making it as button.

Thank you.
16 years ago
Sorry again, I dont need the button in the headder of the tab. I need such button next to the tab headder but in the same row.

Thank you.
16 years ago
Oh! sorry actually the thing is I want to know, is there a way to add button to the tabbed pane. In tabbed pane we usually add panels which will display as tabs. I want to add a button in the place where the the tab icon is displayed. I hope you might have undestood my query.

thank you.
16 years ago
Kindly give me a solution in how to add a jbutton to a jtabbed pane. I am having a tabbed pane which contains three tabs and in the fourth place i need to add an button. How can we do it as we see in eclipse? Kindly give me the solution.

Thank you.
16 years ago
I need to insert the node at the same level in the new location.

Here I am giving the structure for more parents.

A
-1
--2
---leaf1
---leaf2
B
-1
--2
---leaf1
---leaf2
---leaf3

I want to transfer the leaf nodes as if the left tree to the right tree.
16 years ago