473,602 Members | 2,811 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

AWT vs. Swing in applets?

Hey sharks
If I want an applet that functions in the largest possible number of
browsers, which setup should I choose? Is it better to
use AWT than Swing? The user is the average, potentially technically
challenged user.
Kind regards - Jesper
Jul 17 '05 #1
4 7260

"Jesper Matthiesen" <jmatthiesen[_fjen_]@tiscali.dk> wrote in message
news:R3******** *************@n ews000.worldonl ine.dk...
Hey sharks
If I want an applet that functions in the largest possible number of
browsers, which setup should I choose? Is it better to
use AWT than Swing? The user is the average, potentially technically
challenged user.
Kind regards - Jesper


Don't use applets. Go with HTML and JS if at all possible. If that is really
impossible consider flash. I am a true Java proponent but applets are a dead
end.

Regards,

Silvio Bierman
Jul 17 '05 #2
"Silvio Bierman" <sb******@idfix .nl> wrote in message
news:3f******** *************** @news.xs4all.nl ...

"Jesper Matthiesen" <jmatthiesen[_fjen_]@tiscali.dk> wrote in message
news:R3******** *************@n ews000.worldonl ine.dk...
Hey sharks
If I want an applet that functions in the largest possible number of
browsers, which setup should I choose? Is it better to
use AWT than Swing? The user is the average, potentially technically
challenged user.
Kind regards - Jesper
Don't use applets. Go with HTML and JS if at all possible. If that is

really impossible consider flash. I am a true Java proponent but applets are a dead end.

Regards,

Silvio Bierman


I did a project using applets, and had a hard time getting them to work with
the various different browsers and platforms (especially Solaris). I managed
it in the end, and both Swing / AWT worked fine. Swing looks better and is
easier to use, so i'd recommend that.

If you are trying to achieve something simple / graphical then I agree with
the flash suggestion however.

john
Jul 17 '05 #3
nos
my experience is that most PEOPLE have not done
anything to upgrade java and have a browser that only
understands java 1.0
furthermore, they are not willing to take the time to upgrade
if you get feedback from these users it is "it doesn't work"

"John" <?> wrote in message
news:3f******** *************** @lovejoy.zen.co .uk...
"Silvio Bierman" <sb******@idfix .nl> wrote in message
news:3f******** *************** @news.xs4all.nl ...

"Jesper Matthiesen" <jmatthiesen[_fjen_]@tiscali.dk> wrote in message
news:R3******** *************@n ews000.worldonl ine.dk...
Hey sharks
If I want an applet that functions in the largest possible number of
browsers, which setup should I choose? Is it better to
use AWT than Swing? The user is the average, potentially technically
challenged user.
Kind regards - Jesper
Don't use applets. Go with HTML and JS if at all possible. If that is

really
impossible consider flash. I am a true Java proponent but applets are a

dead
end.

Regards,

Silvio Bierman


I did a project using applets, and had a hard time getting them to work

with the various different browsers and platforms (especially Solaris). I managed it in the end, and both Swing / AWT worked fine. Swing looks better and is
easier to use, so i'd recommend that.

If you are trying to achieve something simple / graphical then I agree with the flash suggestion however.

john

Jul 17 '05 #4
Folks,

You might consider "Thinlets." I'm using these and realy enjoying them.

http://www.thinlet.com

You should be able to support most folks with Java 1.1

Robert
"nos" <no*@nospam.com > wrote in message
news:Iutub.3966 8$Dw6.181190@at tbi_s02...
my experience is that most PEOPLE have not done
anything to upgrade java and have a browser that only
understands java 1.0
furthermore, they are not willing to take the time to upgrade
if you get feedback from these users it is "it doesn't work"

"John" <?> wrote in message
news:3f******** *************** @lovejoy.zen.co .uk...
"Silvio Bierman" <sb******@idfix .nl> wrote in message
news:3f******** *************** @news.xs4all.nl ...

"Jesper Matthiesen" <jmatthiesen[_fjen_]@tiscali.dk> wrote in message
news:R3******** *************@n ews000.worldonl ine.dk...
> Hey sharks
> If I want an applet that functions in the largest possible number of
> browsers, which setup should I choose? Is it better to
> use AWT than Swing? The user is the average, potentially technically
> challenged user.
> Kind regards - Jesper
>
>

Don't use applets. Go with HTML and JS if at all possible. If that is

really
impossible consider flash. I am a true Java proponent but applets are
a dead
end.

Regards,

Silvio Bierman


I did a project using applets, and had a hard time getting them to work

with
the various different browsers and platforms (especially Solaris). I

managed
it in the end, and both Swing / AWT worked fine. Swing looks better and is easier to use, so i'd recommend that.

If you are trying to achieve something simple / graphical then I agree

with
the flash suggestion however.

john


Jul 17 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1550
by: Rick | last post by:
Hi, I'm trying to make applets as small as possible. Most applets only needs some textfields, a list and some buttons. Here I can choose between AWT and Swing components. Swing looks nicer but how about size in bytes and compatibility? Which are the smallest and are Swing components as much compatible as AWT or not? Greetings, Rick
6
6411
by: Joseph | last post by:
hi 1) i plan on having an awt canvas component (to draw graphs) on a JFrame with other swing components..will this be okay? i've read that swing and awt aren't compatible.. 2)Also, if i have a function which simply loops infinately that is part of a form, what happens when a form event (eg button click) occurs? will the event handler be executed simulatanesouly with the loop? or does the event excecute first and then the loop is...
0
1499
by: D E | last post by:
I've created an app using SWING gui and awt. It originally was just a client app with some JDBC calls. How would I go about deploying it onto my website? I want to "show it off" I realize in real life, applets and SWING over the web spells security problems, but this is for a "portfolio" of various projects i've completed... thanks a lot...
1
2128
by: Vincent Montressor | last post by:
I'm playing around with writing my own panel applets, and I'm trying to figure out how to get my panel applets to be restored when I log in. As an experiment, I'm using the simple clock applet that comes with PyGNOME (clock-applet.py). It works fine when I run it from the shell, but when I log out and log in again, there's just a tiny GNOME-foot icon where the applet should be. After poking around in ~/.gnome/panel.d, I think I've...
8
3035
by: Andreas Røsdal | last post by:
Hi, Is there such a thing as python applets for web browsers? (eg. such as java applets?) I think that could be useful. Andreas R.
2
1278
by: rajesh | last post by:
Normally in JSP the designing part is done using HTMl. In my application i want to use swing or applets for designing instead of writing HTML , is it possible.Can u please provide me some sample coding .. Thank u in advance *** Sent via Developersdex http://www.developersdex.com ***
46
2992
by: Polar | last post by:
Hi everyone! Anyone here knows what is Java Applets?
3
1821
by: praveen2gupta | last post by:
Hi I have an Application Developed in Swing using JMF. This is capturing video and sound from user. Application is working fine as per requirement. But my requirements is in Applets. I wants to know how to conver Swing application in the Applets Appliaction.
6
51151
by: r035198x | last post by:
I have put together this article to give people starting Swing an awareness of issues that need to be considered when creating a Swing application. Most of the Swing tutorials that I have seen just help people display some nice widgets quickly without explaining some issues that need to be tackled when a full application needs to be developed. This article does not go into full implementation details because those can be found by reading the...
0
8401
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8054
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8268
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6730
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5867
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
3944
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2418
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1510
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1254
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.