Contents Index UltraLite Java development notes Building UltraLite Java applications pdf/preface.pdf

UltraLite User's Guide
  Developing UltraLite Java Applications
    UltraLite Java development notes

Creating UltraLite Java applets


If you create your JDBC program as an applet, your application can only synchronize with the machine from which the applet is loaded, which is usually the same as the HTML.

Including an applet in an HTML page 

The following is a sample HTML page used to create an UltraLite applet:

<html>
   <head>
   </head>
   <body bgcolor="FFFF00">
      <applet code="CustDbApplet.class" width=440                height=188 archive="custdb.zip,ulrt.jar" >
      </applet>
   </body>
</html>

The applet tag specifies the following:


Contents Index UltraLite Java development notes Building UltraLite Java applications pdf/preface.pdf