home *** CD-ROM | disk | FTP | other *** search
- package webeq3;
-
- import java.awt.Component;
- import java.awt.Container;
- import java.awt.Event;
- import java.awt.FlowLayout;
- import java.awt.Font;
- import java.awt.Frame;
- import java.awt.Label;
-
- public class ExpiredFrame extends Frame {
- public ExpiredFrame() {
- ((Container)this).setFont(new Font("Courier", 1, 10));
- Label var1 = new Label("Your WebEQ license key is Invalid or Expired.");
- ((Container)this).setFont(new Font("Courier", 0, 10));
- Label var2 = new Label("Visit http://www.webeq3.com to");
- Label var3 = new Label("obtain a full, non-expiring Edition, or write");
- Label var4 = new Label("to info@webeq3.com for further assistance.");
- ((Container)this).setLayout(new FlowLayout(1, 5, 5));
- ((Container)this).add(var1);
- ((Container)this).add(var2);
- ((Container)this).add(var3);
- ((Container)this).add(var4);
- ((Frame)this).setTitle("Invalid or Expired");
- ((Component)this).setSize(450, 160);
- ((Component)this).setVisible(true);
- }
-
- public boolean handleEvent(Event var1) {
- if (var1.id == 201) {
- System.exit(0);
- }
-
- return false;
- }
- }
-