Jump to content
xisto Community

afshin_a

Members
  • Content Count

    4
  • Joined

  • Last visited

  1. you mean you have a picture file and you used it on applet and the java sand box didnt allow you to access it so i think you must make jar file and put the picture in it or you must use http and store the picture in web and access it but if you mean you must access picture which is in client computer, i think you cant access it
  2. boolean resizable = true; boolean closeable = true; boolean maximizable = true; boolean iconifiable = true; int width = 200; int height = 50; JInternalFrame iframe = new JInternalFrame("", resizable, closeable, maximizable, iconifiable); iframe.setSize(width, height); // Add components to internal frame // Add internal frame to desktop JDesktopPane desktop = new JDesktopPane(); desktop.add(iframe);
  3. in actionperformed method for jbutton2 you must first create reg field then pass it to the constructor Forma_pwlisis f2 = new Forma_pwlisis(store,reg); reg = new Register(f2); must be like this reg = new Register(f2); Forma_pwlisis f2 = new Forma_pwlisis(store,reg);
  4. I think if it works localy fine ,so it' because of your web server may be it add some character start of your page
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.