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 strongm 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. johnburgess

    ??Exe generator for Java??

    There are a number of choices: jsmooth (jsmooth.sourceforge.net) is GPL and quite friendly jstart32 (jstart32.sourceforge.net) is also GPL - a little less smooth looking but it also works There are several others but they are mostly not free (at least not for commercial use - j2exe for...
  2. johnburgess

    how export float value to excel

    Make sure you write too many digits for it to be interpreted as a date; i.e. 2.13000 will do the trick, as will 00002.13
  3. johnburgess

    launching a package piece

    This is probably too late for you, but it sounds as if you have written an application, not an applet. While an application works by call a static void main method, an applet must extend java.applet. The browser will then call the class's start() method when the applet is to start. You can...
  4. johnburgess

    Method Calls, UGENT!

    Matty, I suspect that your problem is because main is static (as it has to be) but push is not. Therefore to call push from main you need an instance of your class. There are two ways to get round this: 1. At the start of main, put Test3 myTest3 = new Test3(); //create an instance of test3...

Part and Inventory Search

Back
Top