JVM Languages
20-20-11.txt
Associated article: Examining Visual J++
Tags: .NET JVM Languages
Source code accompanying the column by Al Williams in which he uses Microsoft's Visual J++ Java development environment to build a calendar applet that you could place on a Web page. Also see 20-20-11.ZIP
Listing One
//******************
// calendar.java: Applet
//******************
import java.applet.*;
import java.awt.*;
import java.util.Date;
//=================================
// Main Class for applet calendar
//=================================
public class calendar extends Applet
{
// PARAMETER SUPPORT: Parameters allow an HTML author to pass
// information to the applet; the HTML ...


