import com.symbian.devnet.util.TaskSwitch; import java.awt.Dialog; import java.awt.Dimension; import java.awt.Frame; import java.awt.Label; import java.awt.Point; public class MyInfoPrint { Frame parent; Dialog diInfo; Label lbInfo = new Label(); InfoPrintThread thIPT = new InfoPrintThread(); public MyInfoPrint(Frame p) { parent = p; diInfo = new Dialog(parent, "infoPrint", false); } // waits 3 seconds and then hides the diInfo-Dialog private class InfoPrintThread extends Thread { private transient boolean stopnow; public void run() { this.stopnow = false; try { // System.out.println("IPT: started."); long dtStart = System.currentTimeMillis(); while (System.currentTimeMillis()