nmohan kumar

Greenhorn
+ Follow
since Mar 01, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by nmohan kumar

Hi,,

I want to add Action Listeners to my application..i am preety new to SWT/Jface..can anyone tell me how to do that?


Here is my code.




Thanks in Advance.
13 years ago
Hi all,

I am developing an appication using swins gui.I want to validate inputs and display alerts if invalid login details are given and also

If an exception is thrown then i need to show the user the reason for the error as an alert message.how can i do that?...


Thanks in advance
13 years ago
will the thread be availabe even if the server gets stopped?

actullay i am running my application on websphere server 6.0.i am using three thread classes.The problem is the server is getting stopped after two threads got finished.

In my servet ,i have coded like,

t1.start();
t2.start();
t3.start();

t2.join();
t2.notify();

i want the third thread to be run after t1,t2 finished running.

t2.join();
t2.notify();

and made the t3 waiting..but the application server gets stopped..

1.is it possible to restart the server,is there any code?
2.will the thread t3 be alive even after the server gets stoped?.


can anyone give me an idea on how to solve this issue?..








Thank you very much Jim.It worked fine.



i have coded 3 thread classes.The first two thread classes do file processing and the last one interacts with Beyond compare.let s say t1,t2 and t3.so,in the servlet i have coded like,

t1.start();
t2.start();
t2.join();

i tried this..and it worked out..can someone explain me wat is exactly happeing ,when the above code is being run?

and then t i want the t3 to be run after t1 and t2 finish running..how can i make it?..