Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. arnwald

    NoClassDefFoundError Error - URGENT

    Another useful tip to keep in mind is that Jar files are compressed using ZIP algorithm. You can open them using any ZIP utility such as WinZip to explore inside using a GUI utility as well as the jar command-line tool.
  2. arnwald

    Retrieve the list of loaded/used classes in a java applet

    I posted a similar question a few days ago. Perhaps you might want to have a look. thread269-274334
  3. arnwald

    Jar file including ONLY what it really needs

    I found another freeware tool (Dietolog) which worked Ok and detects all dependencies, but still, my jar file doesn't work. I think I'll have to go for another solution as apparently the problem has to deal with JMF. I think there is some sort of "hidden" dependencies that are simply...
  4. arnwald

    Jar file including ONLY what it really needs

    Thank you wushutwist for your tip! I generated a jar file using JBuilder 6 Enterprise Edition and it is 432KB but it doesn't work. I don't know exactly what criteria used JBuilder to select what was included on the jar file. It certainly exclude a lot of classes but when I run the applet on a...
  5. arnwald

    Jar file including ONLY what it really needs

    I have created an applet using JMF (Java Media Framework) and I would like to pack my applet plus ONLY those JMF classes my applet needs into a single .jar file. How can I determine what JMF classes have to be included in the Jar?. This is because the client may not have JMF installed preventing...
  6. arnwald

    Current Time & date

    Hi kwunder, I've used this code, which can be enhanced with a few lines more. You need a <span> tag to insert the date/time string on your page. Here's the code: <script type=&quot;text/javascript&quot;> function setToday() { var months = new Array(&quot;Jan&quot;, &quot;Feb&quot...
  7. arnwald

    How to submit a form, after another form (within iframe) is submitted?

    Hi vituz, thanks for your tip. So far, I think a good start is to set a couple of events in order to trigger the functions. When submitting a form, onsubmit is triggered (by the form itself) and then, after around 1 sec, onunload is triggered (by the window). So I thought that it would be...
  8. arnwald

    How to submit a form, after another form (within iframe) is submitted?

    Hi, Let &quot;pageP&quot; be a page which contains a form &quot;formP&quot; and an inline frame (iframe tag) with another page. Let &quot;pageC&quot; be the latter page. Now, when the user submits a form within &quot;pageC&quot; (the one inside the iframe), I need to submit automatically...

Part and Inventory Search

Back
Top