Hi everybody!
I've a simple webpage with a java applet.
The applet calculated a few values. (up to 30 lines of text)
Then I want to send the values back to the server.
Sorry for my english and thanks for your help!
...
Hi,
I am having problems dealing with containers and components in my JApplet.
I don't put my code because I think there is no need for it.
The main class owns the getContentPane().
Another class (let's call it class1) owns a JLayeredPane() and components that are added to it.
Another class (let's call it class2) only have components...
Is there any mobile platform that allows me to run Java Applets? In absence of browser integration, at least Java SE capabilities. I've heard of a mobile device capable of running Windows XP - that would probably include support for Java SE and applets; does any one have any hands-on experience with such a device? How well does it perfor...
I have a Java program that auto dials phone numbers, it can generate sounds to mimic phone keypads, works fine for normal calls, but I encountered a problem when it comes to calling card, it requires me to enter a card number, the sounds generated by my program were not accepted by the other end, it always said the card number is incorre...
I have developed a map applet that has JLabels on it. The JLabels get their X/Y coordinate values from an applet parameter file in order to be shown on the map in an exact position.
The problem is:
The map applet normally runs on a big LCD screen but some clients want to view the map in their browsers too. The issue with this is that th...
Hi,
I was wondering if anyone has any experience getting JAI to auto install from an applet for multiple platforms. I've looked at
http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer%5Fguide/extensions.html#specifying
And it seems to imply (by the fact nothing to the contrary is mentioned) I can only specify an single platform...
Hi Guys,
I have a applet that runs with no issue in asp.net web application ...
but when comes to ASP.MVC application ..here applet is not working throwing class not founnd exception
please let me know if anyone could able to run applet in MVC application .. below is the code from view
<object classid="clsid:8AD9C840-044E-11D1-B3E...
I am a fresher in web developing , is I ve to study applets?
...
I have a "proof of concept" piece of work that crosses over into some unfamiliar territory.
I'm tasked with connecting an EFTPOS machine to an application running as an applet in a browser on our intranet.
I've ignored the EFTPOS dll for the moment and created a simple JNI decorated DLL in my language of choice (Delphi) that just logs a...
This question isn't limited to people who know AppleScript, if you do Cocoa, etc., you should know the answer to this:
I'm making a droplet in AppleScript that compresses JavaScript files, so obviously, I only want JavaScript files to be allowed into the scripts. Any ideas?
Thanks so much.
...
I have wrote a java applet which is pretty simple. It connects to a oracle database upon clicking a button. It works fine, it connects when I run it using eclipse. However, when I use ant to create the jar file I dont know how to include the ojdbc6.jar as a classpath.
Can someone please help me? Ive been trying for a week now.
Here is ...
Whats the difference between Applet and Servlet in JAVA
...
I am reviewing currently a medium size code base (around 30K LOC) which uses a huge Applet and interfaces with other systems.
It's a tool to create custom labels, so we need drag-n-drop and other related UI components.
To which technogly will you migrate given the code base is in Java.
Applet -- No
Java FX -- Adoption rate is too low...
I have a number of places where I need to re-use some template code. Many classes need these items
In a .h could I do something like:
#include <xxx.txt>
and place all of this code in the .txt and just have it included?
Something like a PHP include!
Does gcc allow this?
...
I want to create a game where the user can go to the right-most part of the screen, and if they go any further, they will slide into a new view.
So basically, if they have 3 monsters chasing them on screen # 1, and they go all the way to the right and keep going, they'll enter screen # 2 where there will be 5 new monsters and a new ter...
What I'm trying to do is call a Java Applet method immediately after PostBack of an ASP.NET page. In order to accomplish this I'm using the ScriptManager.RegisterStartupScript function which I pass a small script block to call a function in the page that then calls the Applet function. It seems multi-step but I get nothing if I just tr...
Much like the author of Give me an assignment in C, I'm looking to learn game programming and I learn best by doing, but I don't have any good ideas for games to program which will teach me the skills and for whom the graphics are freely available.
I have written a basic pacman game but apart from that I haven't done any other games.
...
I have an applet that calls a JDialog that contains a JProgressBar component. I subclass the JDialog to expose a method to update the JProgressBar, something like:
public class ProgressDialog extends javax.swing.JDialog {
public void setProgress(double progress) {
jProgressBar1.setValue(jProgressBar1.getMinimum() + (int) (pr...
We have an Applet that can possibly display Chinese text. We are specifying a font for it (Arial), it works fine under both Windows and Mac OSX.
But in Firefox on Linux the Chinese characters are rendered as squares. Is there a way to work around this? Note that we can't assume the existence of a particular font file on the client.
...
When I try to run an applet in applet viewer it is not able to find resources (Image).
I try to load resource like this:
String cb= this.getCodeBase().toString();
String imgPath = cb+"com/blah/Images/a.png";
System.out.println("imgPath:"+imgPath);
java.net.URL imgURL = Applet.class.getResource(path);
but when i run it in appet viewer ...