?? msgbox.java
字號:
package HPCore.stdstmt;
import HPCore.Exception.*;
import HECore.stddata.*;
import HPCore.stdfunc.mb;
public class MsgBox
{
public static void MsgBox(String msg) throws HpException
{
mb.MsgBox(msg);
}
public static void MsgBox(String msg,short type) throws HpException
{
mb.MsgBox(msg,type);
}
public static void MsgBox(String msg,short type,String title) throws HpException
{
mb.MsgBox(msg,type,title);
}
public static void MsgBox(String msg,short type,String title,String helpfile) throws HpException
{
throw new HpException(95,"Invalid procedure call.");
}
public static void MsgBox(String msg,short type,String title,String helpfile,short context) throws HpException
{
mb.MsgBox(msg,type,title,helpfile,context);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -