How to load new sets of parameter to an applet without reloading applet

hello,
I am making an application wherein the there are 2 frames the left and the right. the left frames contains links and the right frame contains an applet that displays the images of the documents.
So for example:
DOC00001 has Image 1 and Image 2
DOC00002 has Image 3 and Image 4
At first applet will be loaded, and the loading applet (Splash screen) appears then displays Image 1 and Image 2. But when I click DOC00002, it is reloaded again(Splash Screen) before displaying image 3 and 4.
Is there a way wherein I just call a function from the applet so that I dont need to reload again the applet and just change its display?
hoping for help. thank you

Hi,
You can make an executable jar file such that when you double click on that it starts running. Just follow the steps.
1. Open a notepad and write the following
Main-Class: XXXXXXXX
XXXXXXX means Your Main Class name. Don't forget to press Enter after you write your class name.
2. Save the file as Mani.mf
3. In the commant prompt ( your directory ) type following lines.
jar cmf Mani.mf Demo.jar *.*
4. This will make a jar file which is executable jar file
Hope this will help you.
Deepak

Similar Messages

  • How to load new planning application in EPM 11.1.1.2-DIM ESSBASE ADAPTER

    how to load new planning application in EPM 11.1.1.2-DIM ESSBASE ADAPTER

    If you trying load metadata into planning using DIM then have a look here :- http://www.oracle.com/technology/obe/hyp_fp/DIM_Planning/OBE_Dim_Planning.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to create *NEW* set of Recovery Media?

    Hello -
    Accidentally scratched my Recovery DVDs by leaving them in my laptop bag (ie. have external HDs, external slim DVD writer, etc...) in there. How do I re-create a *new* set of recovery media on my T61p since the option is now grey'd out?
    Thanks,
    Michel

    Do you know of any place in your area that would resurface discs? There is a store thats owned by Hollywood Video called "Game Crazy" and they do that all the time think its like $2 per resurface also check out used game stores in your area and see if they have disc resurfacing capabilities.
    Word of warning, Those do it yourself scratch removal kits, and products like scratch doctor or skip doctor will actually make things worse!
    Message Edited by jasonhockeyguy on 05-28-2008 11:54 AM
    Proud supporter of the Toronto Maple Leafs Hockey Club

  • How to load new hirearchys into BW system from R/3

    Hi
    For PROFIT_CT & 0Account Hirerachies in R/3 source system,
    a new hirearchy has been added and this new hirearchy need to load into BW system as it doesnt exists in BW system.
    But in infopackage selection this new hirerachy doesnt exists,hence I tried to find this new hierarchy by REFRESHING in Infopackage Hirerachy Selection tab.Even then this new hirearchy doesnt exists.
    But this new hirerachies exists in R/3 source system.
    Can anyone let me know how to load this
    Shankar

    Hi Barry
    Thanks for your message
    This Tcode KSH3 is for Cost Center Hierarchy but not for Profit center or Account .
    I checked in KCH3 & KDH3 tcodes for Profit center or Account hirerachies in R/3,
    Both the hirerachies are mentioned in top node in R/3
    But still these hierarechies doesnt exists in IP in BW
    Can you let me know little further
    Shankar

  • How to load some setting in application bean on web application start up?

    Hi
    Thank you for reading my post
    Is it possible to load some setting in applicationBean when the web application starts?
    And also
    I need to store some of my application configuration in a .properties file
    can some one please help me with the following items ?
    -How i can access the .properties file
    -where should i put it.

    Hi
    Thank you
    How i can load the .properties files ?
    how should i find the path ? some servers does not allows an application to find the real path to load a file.
    Thanks

  • How to Load new members into existing dimensions in Planning 9.3.1

    Hi,
    I am not having HAL, and is it possible to load members into existing dimensions of a newly created planning application - for example under accounts I want to add around 100 members - how to add them using a flat file without using HAL - is there anyother way out.
    Can we use workspace->Navigate ->administer->Dimention Library
    Create a new dimension here add that to Accounts ?? help me in this

    John,
    Can you suggest me the syntax to be used for the below example to create a flat file
    the Hiearchy I have(for accounts and entity)
    current:
    Accounts
    I need t have the following children under Accounts
    Child of Accounts:Assets,alias(assets of x company)
    Child of Asssets: 101, alias(asset1),Datastorage("store"), base currency("USD"),aggregation(+),Plantype("plan1")
    Regards,

  • How to load new photos onto Iphone without duplicating old photos?

    Hi There
    I use my IPhone to store all of my photos and want to update it actively every couple of weeks, i recently tried to add to the existing photos on my iphone but found that the photos that were on the phone to begin with are now all duplicated, but the IPhone isn't registering that they are duplicated (ie - if the folder has 30 photos in it and recognises 30 photos there are actually 60 photos in the album that I can see?) How can I add to the photo folder without the existing photos duplicating?
    Thanks

    Try removing/deleting the iPod Photo Cache folder from the folder of photos on your computer's hard drive you have selected to be transferred to your iPhone followed by another sync.
    http://support.apple.com/kb/TS1314

  • How to load different modules in moduleLoader - some with other without unload?

    Ok so I've read a lot about modules and I decided to build a site where I have a button bar menu and a single moduleLoader, where all of my pages are separate modules. Some of the modules will be preloaded with moduleManager technique so they will be in memory and should pop up instantly and others should be unloaded since they will be used rarely. Imagine you have 50 pages, 45 of them use the same 3 modules and the rest 5 use 5 other modules.
    So I need 2 things:
    1) those 3 modules preloaded (loaded into memory) and then used - this is not a problem. In the change handler of the button bar I just set the url of the moduleLoader=""; and right after that line I put moduleLoader.url = "module1.swf" for example. This way the ready event fires everytime I change the selected button of the buttonBar and since the module is loaded into memory it changes immediately, which is great.
    2) I need the rest 5 modules that are not preloaded, to be loaded by the moduleLoader and when the user clicks on another button, the module to be unloaded and the new module for the new selected button to be loaded on it's place. So here unloading of the old module and loading of the new one should happen with 1 user interaction - clicking a button. How do I do that?
    I am asking this because I found out that there is some difference when the module has been preloaded or not which changes the way it unloads. Also in certain cases if a module has been unloaded once and loaded again it stops shooting the unload event by only changing the moduleLoader.url and then you have to specifically call moduleLoader.unloadModule() function to get it called.
    And all of this brought me to the idea that maybe the only way to make this work for case 2 is having moduleLoader.unloadModule(); and on the next line after it moduleLoader.url = "newModuleUrlHere";
    But then I bumped into a problem with flickering in my buttonBar selected button transition which I describe and give online example of here:
    http://forums.adobe.com/thread/760347?tstart=0
    So is there any technique of combining preloaded modules which should not be unloaded + the ones who need to be loaded and unloaded and all of this to be working with just one moduleLoader instance?
    I really didn't expect to have so much trouble with modules... If no one can suggest me a working example I will post each case I described here to help me get resolution to this cause I can't get on with my project and it's very important.
    Thanks in advance!

    Hi thanks for the reply here too
    I agree it totally makes sense if I do not unload modules to load them in the same application domain and not as a child. This way I wouldn't have to worry about the singletons I could have forgotten to initialize in the main application If my logic is correct. But still is it wrong to leave them in a child ApplicationDomain since I will still have modules I will need to unload and I would still have to be careful about the singleton managers?
    Note: have in mind I am trying to separate the module's from the main application, so the application won't use any classes defined in the modules since it won't be aware of what's in what module.
    Yes, I do have a buttonBar buttons which map to module urls.
    Ok I will try to setup my questions in a few very simple example applications, it would be easier for you to understand what's confusing me.
    http://filip.nedyalkov.net/moduleLoaderTesting2/ - view source enabled - look at testing3.mxml
    In the button bar change handler I have:
    moduleURL = buttonBar.
    selectedItem.url;moduleLoader.url = moduleURL;
    and I listen to the moduleLoader unload event.
    On the Unload Current Module Button I have: moduleLoader.unloadModule();
    Ok what is confusing me is this: When I start switching between module1 and module2 do they automatically get unloaded because I recall reading that changing the moduleLoader.url property doesn't unload the module just releases it? Also I'm getting the unload event shoot very strange because if I am on module1 and then click on module2 it doesn't shoot that module1 was unloaded, it doesn't do anything. As soon as I click back on module1 then it shoot unloaded (you can see that in my example in the text area).
    Another strange thing is that while doing this, everytime you click on module1 or module2 they get transferred over the network I can see that in mozilla firebug. Now if I am on module1 and click the Unload Current Module button the module really gets unloaded and then the unload event is correct and shoot when it's supposed to shoot. Now if you click on module2 and then come back to module1 it will get loaded again, but now it will be put in memory, it won't shoot unload event any more and it won't get transferred over the network when I switch the modules? Why is that ? All I did was unloading the module once and it changes everything.
    So I hope you undertstand this cause I have no idea is this supposed to work this way? Would you be so kind to explain me this behaviour ?
    Thanks!

  • How to load the image on to the Java applet?

    Hey,
    I need help on loading a image to java, I am using Eclipse, I have no idea what class I should use. Please help me thanks

    I found this with search problem with loading images

  • How to Create new PDF Report in ORacle Apex3.2 without having XML Publisher

    I am an Apex developer , my requirement is to develop the PDF file from Apex 3.2 with out using Oracle BI Publisher.
    Can anyone let me know the possibility??
    Thanks,
    Dhana

    Dhana,
    What reports are you trying to generate? I believe Apex can generate PDF reports out-of-the-box.
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r31/apex31nf/apex31rpt.htm
    APEX forum: Oracle Application Express (APEX)
    regards,
    Rownald

  • How to load software to mac mini

    how to load new software to mac mini?

    If the SW is on Disc, you need to buy a USB Optical drive, or find SW availble for download.
    eshop.macsales.com/shop/firewire/optical-drives/

  • Set VM parameters from an applet

    Hi all,
    When I run an applet I need to start the VM with this parameter:
    -Djava.rmi.server.hostname=localhost
    How can I set this parameter from an applet to correctly start the VM?!?!?
    Thanks in advance!!

    Hi all,
    When I run an applet I need to start the VM with this
    parameter:
    -Djava.rmi.server.hostname=localhost
    How can I set this parameter from an applet to
    correctly start the VM?!?!?
    Thanks in advance!!You can't do it from the applet, since the vm is already started when you execute the applet. But I think you can do this after your applet has started.
    System.setProperty("java.rmi.server.hostname", "localhost");I'm not sure if an applet is allowed to do that (It can throw an security exception), but you could give it a try.
    /Kaj

  • How to display the search result without reloading the whole page

    HI,
    I have separate fragments for Search Box to enter keyword and Search Result to display the result. Also I have different sections within the page to put these fragments. So how could I display the results without reloading the whole page.
    Also if I have next button in my search result area, how could I display the search results in next page without reloading all other sections present in our page. Please let me know if any service or idoc function present such that result could be shown in search result section without reloading whole page.
    Please let me know how to restrict page reload for every action within a page.
    Thanks,
    Ramesh
    Edited by: Ramesh_Est on May 27, 2010 3:14 AM
    Edited by: Ramesh_Est on May 27, 2010 8:39 PM

    This is default behaviour of the template of your space. You can create a new page template and than you can create a region for the search results.
    Or you can create a custom taskflow were you use the webcenter taskflows to search for the space.
    Take a look at this white paper:
    Extending webcenter spaces: http://www.oracle.com/technology/products/webcenter/pdf/owcs_r11_extend_spaces_wp.pdf
    and this one:
    Customizing site templates: http://www.oracle.com/technology/products/webcenter/pdf/owcs_ps1_site_template_wp.pdf
    Edited by: Yannick.O on 13-Apr-2010 02:32

  • How to set UTL_FILE parameter in the INIT.ORA file

    Dear all,
    How can i set UTL_FILE parameter in the INIT.ORA file.
    Also let me know how to create a directory over there.I am new to this area.
    Where exactly i can locate these details and create directory.
    Regards,
    Bala.

    post this in database forum

  • (Administration - Marketing - Import), you can set a parameter value "Import mode" for what to do in case of duplication as "update existing records", "Import new records". The final report of this import is presented as a text file that can be viewed in

    Administration - Marketing -> Import, you can set a parameter value "Import mode" for what to do in case of duplication as "update existing records", "Import new records". The final report of this import is presented as a text file that can be viewed in Business Administration - Marketing -> Import -> Exceptions. Whatever the exception, including duplication import occurs during import and recorded in a text file.   What are the fields that determine the duplicity? How I can I can change those?

    You will be returned anything that is in the option's value parameter. What is displayed in the dropdown and what is put in the value attribute do NOT need to be the same, so maybe you should start there.

Maybe you are looking for

  • I can no longer  transfer my apps purchased via itunes

    The icons are greyed out/ disabled, therefore all my apps purchased via iTunes are in tmy computer and I can't transfer them to my phone. How do i resolve this?

  • Ipod is not detected by mac

    I am running MAC OS X 10.6.3, iTunes 10.6.3 and iPhoto 7.1.5 When I connect my ipod 5.1.1, only iphoto detects the device but not iTunes. I tried the basic troubleshooting assistant with no luck. Any advice??

  • CF11 install linux failure...Launching installer...  JRE libraries are missing or not compatible....

    CF11 install linux failure Expected: bundled JRE should work on Ubuntu 13.1 Launching installer... JRE libraries are missing or not compatible.... # java -version java version "1.7.0_55" OpenJDK Runtime Environment (IcedTea 2.4.7) (7u55-2.4.7-1ubuntu

  • FIOS1

    What is the update on FIOS 1 coming to NYC Area? its needed to compete with TWC and CV in NYC, NJ and LI. I was told FIOS 1 is a 24 hour local channel, who has it , can confirm what exactly it is ? Also when is NBC Weather + going to the all news cha

  • Column Data type for text more than 10000.

    Hi, Which data type is best suited for a column which will have a text length more than 10000. The text is simple english only. Regards Srini