ps prasad

Greenhorn
+ Follow
since Mar 03, 2005
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 ps prasad

So far i was thinking the Option is applicable to java only. But u r saying that it it can be used for javac also. Thanks a lot layne. I shall try again with javac and jar file entries.
regard,
psprasad
19 years ago
I have a requirement to open another window as soon as the user closes the current window.
We are using a framework and extending a framework class(Abstract Frane) to create new frames. The abstract frame adds defautl internal frame listerner to the created window. And also there is a toolbar in desktop pane.
As per my requirement, i have added a new internal frame listener and has code to invoke a new screen in the internal frame closed event.Now there two internal frame listeners 1) Added by frame work 2) Explicitly added by me.
When the window is closed, the code that i wrote in internalframeclosed event is getting executed and the next scteen is invoked, Now the problem is here. Next, the listener added by framework fires and it has code to disable the tool bar . so the tool bar is getting disabled. But actually the bar always point to current frame. so, it's setting should confrom to newly opened frame. As the infterframe closed event is firing after the new window is created, tool bar is becoming non funtional. As per my knowledge there is noway impose sequence on the events. I have some functionality in the listerner added by framework and as far as possible don't want it to be removed.
Is there any way to control this.
[ March 03, 2005: Message edited by: ps prasad ]
19 years ago
Does javac command recognizes the Class-Path entry in the Manifest.mf file of a jar file which is set in the class path. For example,
javac - classpath lib..jar -d . MyApp.java

where the Class-Path entry of Manifest.mf file will have log4j.jar etc jar file values.Now does the complier recognize log4j.jar throught these entries.

regards,
psprasad
19 years ago