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

📄 comman.pas

📁 基于DELPHI的列车时刻查询系统设计与实现
💻 PAS
字号:
unit Comman;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  se_controls, KsSkinSpeedButtons, KsSkinToolBars, KsSkinGroupBoxs,
  ksskinsplitter, Grids, DBGrids, KsSkinDBGrids, KsSkinLabels, KsSkinEdits;  

  procedure MBox(strText,strCaption,strFlag:string);

implementation


procedure MBox(strText,strCaption,strFlag:string);
begin
  if strFlag = 'warning' then
    Application.MessageBox(pchar(strText),pchar(strCaption),mb_ok+mb_iconwarning);
  if strFlag = 'ok' then
    Application.MessageBox(pchar(strText),pchar(strCaption),mb_ok+mb_iconinformation);
end;


end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -