⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 msgbox.java

📁 一个简单的visio程序。
💻 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 + -