Is this possible to use lwuit.Dialog with javax.microedition.lcdui.Canvas in wireless toolkit 2.5.2?
I am using javax.microedition.lcdui.Canvas for drawing my string on the screen. But I also need one dialog window for some purpose. So I am using lwuit package ( com.sun.lwuit.Dialog ) for showing dialog window when key pressing. So in my program I just included that package and create the object of the Dialog box. While running my application, it is terminated unexpectedly. I just included the following lines... import javax.microedition.lcdui.Canvas; import com.sun.lwuit.Dialog; public class Mycanvas extends Canvas implements CommandListener { Dialog dialog = new Dialog(); //some other