我的整个程序是使用TextPad编辑器在java语言中开发的。我想在主机内打开框架,但是没有通过所选工具栏按钮或菜单项的响应。虽然在编译时或运行时没有错误。内部框架根本不打开
例如:
public class Xyz extends JInternalFrame
{
public Xyz()
{
super("Java", true, true, true, true);
//here are initialization and database connection part.
}
}