Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/12/2012, 13:42
Avatar de iivo94
iivo94
 
Fecha de Ingreso: febrero-2011
Ubicación: Argentina
Mensajes: 281
Antigüedad: 13 años, 2 meses
Puntos: 3
Respuesta: Applets problema XD

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
}