473,546 Members | 2,196 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Help Me!

Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...
Jul 17 '05 #1
9 2318
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do
Swing but heard this, is that one of the issues with swing, the each share
the same thread? If they don't, another approach is setting priorities on
the threads but that is so unpredictable it is probably not worth trying as
much as the first thing I mentioned with calculations and sleep() intervals.

J
"viator" <vi****@rediffm ail.com> wrote in message
news:dc******** *************** ***@posting.goo gle.com...
Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...

Jul 17 '05 #2
good thought.... wrong model though.....

If the batch was kicked of via an event, the thread that is running it
happens to BE the event loop. For what you are trying to do, you will have
to create a new thread to do the calculations. You might want to make you
class implement Runnable, and then put the calculations in the run() method.
Then you could just call new Thread(this).st art();
good luck

"James" <ja**********@c omcast.net> wrote in message
news:OJlfb.4879 99$Oz4.331841@r wcrnsc54...
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do
Swing but heard this, is that one of the issues with swing, the each share
the same thread? If they don't, another approach is setting priorities on
the threads but that is so unpredictable it is probably not worth trying as much as the first thing I mentioned with calculations and sleep() intervals.
J
"viator" <vi****@rediffm ail.com> wrote in message
news:dc******** *************** ***@posting.goo gle.com...
Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...



Jul 17 '05 #3
"James" <ja**********@c omcast.net> wrote in message
news:OJlfb.4879 99$Oz4.331841@r wcrnsc54...
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do
Swing but heard this, is that one of the issues with swing, the each share
the same thread? If they don't, another approach is setting priorities on
the threads but that is so unpredictable it is probably not worth trying as much as the first thing I mentioned with calculations and sleep()

intervals.

In my experience, the behavior of threads with different priorities id fully
predictable. One of my apps had a thread that updated a GUI. The update
worked, but was quite jerky, with a number of updates buffered up before
showing them. Lowering priority of the updating thread fixed the problem.
This effect was observed on Windows (98, NT, 2K and XP).

Just my $0.02

Alex Molochnikov
Gestalt Corporation

Jul 17 '05 #4

"Alex Molochnikov" <NO****@NO.SPAM > wrote in message
news:Resfb.1270 6$9l5.6566@pd7t w2no...
"James" <ja**********@c omcast.net> wrote in message
news:OJlfb.4879 99$Oz4.331841@r wcrnsc54...
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do
Swing but heard this, is that one of the issues with swing, the each share the same thread? If they don't, another approach is setting priorities on the threads but that is so unpredictable it is probably not worth trying as
much as the first thing I mentioned with calculations and sleep()

intervals.

In my experience, the behavior of threads with different priorities id

fully predictable. One of my apps had a thread that updated a GUI. The update
worked, but was quite jerky, with a number of updates buffered up before
showing them. Lowering priority of the updating thread fixed the problem.
This effect was observed on Windows (98, NT, 2K and XP).

Just my $0.02

Alex Molochnikov
Gestalt Corporation


I'm glad but the java specification offers very little guarantees on thread
priority. It cant, because the JVM is a thread battling for runtime on
equal footing with a screen saver in windows. yes it may work and it may
work on those platforms, but even then, you are fortunate and another
configuration could change anything. Logically there is no way the thread
priorities can guarantee anything - as Java's priorities dont match up with
windows (10 to 7) and they dont even come close to Solaris. Very little is
guaranteed with threads and java as pertains to universal performance.
Jul 17 '05 #5
Sounds good, my point was predicated on calculations having their own
thread.
"Thomas Smith" <re************ *********@cox.n et> wrote in message
news:FXrfb.3834 1$AH4.20789@lak eread06...
good thought.... wrong model though.....

If the batch was kicked of via an event, the thread that is running it
happens to BE the event loop. For what you are trying to do, you will have to create a new thread to do the calculations. You might want to make you
class implement Runnable, and then put the calculations in the run() method. Then you could just call new Thread(this).st art();
good luck

"James" <ja**********@c omcast.net> wrote in message
news:OJlfb.4879 99$Oz4.331841@r wcrnsc54...
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do
Swing but heard this, is that one of the issues with swing, the each share the same thread? If they don't, another approach is setting priorities on the threads but that is so unpredictable it is probably not worth trying

as
much as the first thing I mentioned with calculations and sleep()

intervals.

J
"viator" <vi****@rediffm ail.com> wrote in message
news:dc******** *************** ***@posting.goo gle.com...
Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...



Jul 17 '05 #6
How do you know the priority on windows is in the
range of 10-7? If I use the task manager in windows XP Professional
to change the priority of a process I am presented with the following
choices:

RealTime
High
AboveNormal
Normal
BelowNormal
Low

Did you notice that there is more than 5?
Also, I think/wonder if the Java priority is really a "SUB" priority
that operates within a single windows priority. For example
if I run a Java program via "java NewDraw" I am sure that
there is more than one thread inside this application, but
as far as windows is concerned there are two Processes
java.exe running at priority "normal" and
javaw.exe running at priority "normal"

Phil...
"James" <ja**********@c omcast.net> wrote in message
news:8bCfb.4943 64$Oz4.341083@r wcrnsc54...

"Alex Molochnikov" <NO****@NO.SPAM > wrote in message
news:Resfb.1270 6$9l5.6566@pd7t w2no...
"James" <ja**********@c omcast.net> wrote in message
news:OJlfb.4879 99$Oz4.331841@r wcrnsc54...
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do Swing but heard this, is that one of the issues with swing, the each share the same thread? If they don't, another approach is setting
priorities
on the threads but that is so unpredictable it is probably not worth
trying as
much as the first thing I mentioned with calculations and sleep() intervals.

In my experience, the behavior of threads with different priorities id

fully
predictable. One of my apps had a thread that updated a GUI. The update
worked, but was quite jerky, with a number of updates buffered up before
showing them. Lowering priority of the updating thread fixed the problem. This effect was observed on Windows (98, NT, 2K and XP).

Just my $0.02

Alex Molochnikov
Gestalt Corporation


I'm glad but the java specification offers very little guarantees on

thread priority. It cant, because the JVM is a thread battling for runtime on
equal footing with a screen saver in windows. yes it may work and it may
work on those platforms, but even then, you are fortunate and another
configuration could change anything. Logically there is no way the thread
priorities can guarantee anything - as Java's priorities dont match up with windows (10 to 7) and they dont even come close to Solaris. Very little is guaranteed with threads and java as pertains to universal performance.

Jul 17 '05 #7
vi****@rediffma il.com (viator) wrote in message news:<dc******* *************** ****@posting.go ogle.com>...
Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...

Read the javadoc for javax.swing.Swi ngUtilities#inv okeLater() method
and linked documentations from there. Your time-consuming task should
run as a separate thread separated from Swing GUI rendering
thread(a.k.a. AWT event dispatch thread).
Jul 17 '05 #8

"viator" <vi****@rediffm ail.com> wrote in message
news:dc******** *************** ***@posting.goo gle.com...
Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...


The biggest invalid assumption made here is that Windows is a multi-tasking
OS.
I'm running 2000 and it is constantly pausing with all kinds of programs and
not allowing other functions to run until the currently running program has
quit some procedure. OE does it all the time when it is going out and
bringing in mail - everything else stops until it completes the read, which
makes no sense because I/O uses very little of the systems resources (new
system with AMD 2500+ and 512 Meg ram). If I were using a phone modem I
would have to go out and have lunch while I waited.

Then again, M$ intelligence is equivelent to proverbial army intelligence --
so you really can't expect it to work in any reasonable fashion.

I also have a Linux machine (slower with less ram) and it runs circles
around the Windoze machine and never exhibits a slow response. It also goes
out and gets mail and I can't tell when it's doing it.

John
Jul 17 '05 #9
HG******@nifty. ne.jp (hiwa) wrote in message news:<68******* *************** ****@posting.go ogle.com>...
vi****@rediffma il.com (viator) wrote in message news:<dc******* *************** ****@posting.go ogle.com>...
Read the javadoc for javax.swing.Swi ngUtilities#inv okeLater() method
and linked documentations from there. Your time-consuming task should
run as a separate thread separated from Swing GUI rendering
thread(a.k.a. AWT event dispatch thread).


I tried the following two methods. . .
One using the SwingWorker Class. . .

public void actionPerformed (ActionEvent evt){
Object o=evt.getSource ();
if(o==cmdRun||o ==txtInput){
final SwingWorker worker=new SwingWorker(){
public Object construct(){
/* the time consuming part */
runMachine();
return null;
}
};
worker.start();
}
/* other handlers . . .*/
}

And other one by implementing Runnable like this…

public void actionPerformed (ActionEvent evt){
Object o=evt.getSource ();
if(o==cmdRun||o ==txtInput){
/* the time consuming part */
/* here the time consuming part it in the run method of this class*/
new Thread(this).st art();
}
/* other handlers . . .*/
}

Is the second implementation violates single thread rule? Please note
that the user interface is also updated by "Time consuming part" to
render outputs. Although both the method are working fine. which one
is better though?
Jul 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
6498
by: Dave | last post by:
After following Microsofts admonition to reformat my system before doing a final compilation of my app I got many warnings/errors upon compiling an rtf file created in word. I used the Help Workshop program: hcw.exe that's included with Visual Basic. This exact same file compiled perfectly with no notes, warnings or errors prior to...
9
4387
by: Tom | last post by:
A question for gui application programmers. . . I 've got some GUI programs, written in Python/wxPython, and I've got a help button and a help menu item. Also, I've got a compiled file made with the microsoft HTML workshop utility, lets call it c:\path\help.chm. My question is how do you launch it from the GUI? What logic do I put behind...
6
4311
by: wukexin | last post by:
Help me, good men. I find mang books that introduce bit "mang header files",they talk too bit,in fact it is my too fool, I don't learn it, I have do a test program, but I have no correct doing result in any way. Who can help me, I thank you very very much. list.cpp(main program)...
3
3329
by: Colin J. Williams | last post by:
Python advertises some basic service: C:\Python24>python Python 2.4.1 (#65, Mar 30 2005, 09:13:57) on win32 Type "help", "copyright", "credits" or "license" for more information. >>> With numarray, help gives unhelpful responses:
7
5347
by: Corepaul | last post by:
Missing Help Files When I enter "recordset" as the keyword and search the Visual Basic Help index, I get many topics of interest in the resulting list. But there isn't any information available from clicking on many of the available topics (mostly methods but some properties are also unavailable). This same problem occurs with many, if not...
5
3252
by: Steve | last post by:
I have written a help file (chm) for a DLL and referenced it using Help.ShowHelp My expectation is that a developer using my DLL would be able to access this help file during his development time using "F1" help within the VB IDE. Is this expectation achievable In trying to test my help file in the IDE, I have a solution with 2 projects:...
8
3208
by: Mark | last post by:
I have loaded Visual Studio .net on my home computer and my laptop, but my home computer has an abbreviated help screen not 2% of the help on my laptop. All the settings look the same on both including search the internet for help, but the help is worthless. Any ideas?
10
3339
by: JonathanOrlev | last post by:
Hello everybody, I wrote this comment in another message of mine, but decided to post it again as a standalone message. I think that Microsoft's Office 2003 help system is horrible, probably the worst I ever seen. I almost cannot find anything I need, including things I
1
6115
by: trunxnirvana007 | last post by:
'UPGRADE_WARNING: Array has a new behavior. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="9B7D5ADD-D8FE-4819-A36C-6DEDAF088CC7"' 'UPGRADE_WARNING: Couldn't resolve default property of object Label. Click for more:...
0
2857
by: hitencontractor | last post by:
I am working on .NET Version 2003 making an SDI application that calls MS Excel 2003. I added a menu item called "MyApp Help" in the end of the menu bar to show Help-> About. The application calls MS Excel, so the scenario is that I am supposed to see the Excel Menu bar, FILE EDIT VIEW INSERT ... HELP. I am able to see the menu bar, but in...
0
7507
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7435
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7698
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7794
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5361
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5080
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3492
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3472
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1922
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.