ya hice q se ejecute el applet con alt f6, pero no me muestra nada en el applet :l, todo blanco... :S
Código:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package napplet;
import java.applet.Applet;
import java.awt.*;
/**
*
* @author Usuario
*/
public class NewApplet extends Applet {
public void Paint(Graphics g){
g.drawString("Hola", 10, 10);
}
@Override
public void init() {
setBackground(Color.WHITE);
}
// TODO overwrite start(), stop() and destroy() methods
}