import java.lang.*; import java.awt.*; import twinfeats.jar.*; public class TFC extends java.lang.Object { public static void main(String[] args) { Frame win; try { ZipLoader zl = new ZipLoader("client.jar"); zl.loadAll(null); Class c = zl.loadClass("LogonWin",true); win = (Frame)(c.newInstance()); win.show(); return; } catch (Exception e) { e.printStackTrace(); } // LogonWin win = new LogonWin(); // win.show(); } }