msgbox.java

来自「一个简单的visio程序。」· Java 代码 · 共 33 行

JAVA
33
字号
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 + =
减小字号Ctrl + -
显示快捷键?