Re: What are Applets in Java? Programming Software Development by bguild … a part of a website. Aside from some security scares, applets are a fine way to add dynamic content to a… Re: Action Listener for buttons Programming Software Development by VernonDozier … of its little bubble. If zwench has three separate applets on three different parts of the web/html page, …applet be the main applet and create the other two applets. Those applets aren't created by the html code? Again, …full disclaimer, my understanding of applets in this regard may be completely incorrect and all of… Re: Questions about Applet and JFrame Programming Software Development by Ezzaral Applets are typically only used for small programs embedded in web-… Re: applet and servlets Programming Software Development by peter_budo Applets for simple data collection from form are overkill as masijade already mentioned in reply to your [URL="http://www.daniweb.com/forums/thread197724.html"]other post[/URL]. Re: java.lang.NoSuchMethodError Programming Software Development by Ezzaral Applets are not started from the command line like a regular …. If not, read the following tutorial on getting started with applets: [url]http://java.sun.com/docs/books/tutorial/deployment/applet… Re: want help for User-password application Programming Software Development by jwenting applets can only connect to resources on the server where they were hosted from, UNLESS they're signed applets. Re: I can compile java applications but cant run them Programming Software Development by sirlink99 Applets are java programs that are required to run in web browsers. Applications are java programs that can act as a stand alone program, and can be converted in exe's and executable jar files. You can only run applications using the command prompt. Applets have to be integrated into websites. Re: create website Programming Software Development by ichigo_cool Applets are - as far as I know - why Java is known for being in web pages. So do some research on Java Applets if you're wanting more power in your websites. Re: Applet or Application? Programming Software Development by big_k105 Applets are web based and applications run outside the browser on there own. Re: AccessControlException (access denied) Programming Software Development by Phaelax Applets do not allow access outside of there local domain. This link might help. [url="http://java.sun.com/sfaq/"]http://java.sun.com/sfaq/[/url] Re: problems loading gui into html Programming Software Development by server_crash Applets extend JApplet not JFrame ;) Re: error message Programming Software Development by jwenting applets don't need a main method :) Re: Applet not initializing Programming Software Development by destin Applets shouldn't have constructors because an applet isn't guaranteed … Re: Display how sort works? Please help Programming Software Development by javaAddict Applets are not my strong point. But I advised you to use a JTextArea and display in each line the elements of the array. Check the API of JTextArea on how to append and set text Re: Writing to file Programming Software Development by sillyboy applets are generally run embedded in a web page, so for security reasons, it won't give you access to the client's filesystem. there may be a workaround, but this type of thing wouldn't be a good idea. Re: NetBeans Java Swing Application to Website Programming Software Development by Dukane Applets are a whole other ball game. Check out this though: [url]http://java.sun.com/docs/books/tutorial/deployment/webstart/[/url] Re: Getting source from webpage applet Programming Software Development by jwenting Applets can only make network connections back to the server on which they are hosted unless they are signed, so yes you need to make it a signed applet. Re: Exception in thread "AWT-EventQueue-1" java.security.AccessControlException: acc Programming Software Development by NormR1 Applets need permission to do most things. I guess your code is trying to access a Property and it is not allowed to. To give an applet permission you need to put it in a signed jar or make changes to the .java.policy file on the client machine. Or change your logic so the server side code does the DB lookup. Re: Java Applet with JavaMail - issue on web Programming Software Development by NormR1 Applets need permission to connect to a host other than the one they are loaded from. Re: what is applet in Java. Programming Software Development by sincerelibran Applets are small applications that are accessed on an Internet Server, … Re: pulling plain text from a website, how? Programming Software Development by Ezzaral Applets can run from a web page. Jar files are standalone Java applications. If your application is not an applet, your friends will have to download the jar and run it themselves. Re: applet Programming Software Development by NormR1 Applets are restricted in what they can do. They need permission to connect to a site if they were not loaded from that site. Are you loading the html with the applet from a server at 127.0.0.1? > i give the applet the folllowing permission Where is the policy file with that statement? How are you giving the applet the permission? Re: JApplet... why won't my JButton for Exiting work? Programming Software Development by NormR1 Applets are not allowed to use System.exit(0). The browser is in control. Use showDocument() if you want a different page shown or remove all the components that are being shown. Re: Java Applet Programming Software Development by NormR1 Applets normally run in a browser and require their support to … Re: Java Applet Programming Software Development by NormR1 Applets are restricted in the I/O they can do. They often can not read from a PC's disk. Try putting the file you want to read in the jar file and using the getResources methods to read the file. Did you try searching on the forum for sample code that uses getResource? Re: How to embed java applet in html page itself-(ClassNotFoundException) Programming Software Development by stultuske applets are Java, not JavaScript. maybe [this](http://docs.oracle.com/javase/tutorial/deployment/applet/invokingAppletMethodsFromJavaScript.html) will bring you closer to what you are looking for. Applets embedded in a webpage Programming Software Development by flpips … fine until I installed the latest Java7. Now all the applets are blocked, with some comment about my security settings being… I know to no avail. How do I get my applets back? What good alternative(s) do I have to the… Re: Applets embedded in a webpage Programming Software Development by JamesCherrill To protect from scummy criminals, the security settings for running applets have been steadily increasing over a number of Java updates. … stil see warnings, but should be able to run signed applets. applets in terminal window Programming Software Development by spiderpratik … to do this as soon as possible. [code=Java] package applets; import java.awt.event.*; import java.awt.Graphics; import java… Applets and Netbeans help. Programming Software Development by pjdev … without a server backend. So I am led to use applets. Can you suggest any alternatives? I want to create something…