亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? wwintl.pas

?? 本系統為病歷管理系統
?? PAS
?? 第 1 頁 / 共 5 頁
字號:
unit Wwintl;
{
//
// Components : TwwInternational
//
// Copyright (c) 1995-2001 by Woll2Woll Software
//
// 11/10/97 - Add Bold, Italic, Underline for PopupMenuLabels
//
// 12/23/98 - Include Redo hint for richedit editor in Delphi 4
}

{$i wwIfDef.pas}

{$ifdef wwDelphi3Up}
{$DEFINE NEWIPSETUP}
{$endif}
{$ifdef VER93}
{$DEFINE NEWIPSETUP}
{$endif}

interface

uses
  Consts, SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  Forms, Dialogs, wwstr, db,
{$ifdef NEWIPSETUP}
  Registry,
{$endif}
  Buttons;

type

  TwwPictureValidationError = procedure (Sender: TObject;
     Field: TField; var Msg: string; var DoDefault: boolean) of object;

  TwwUserMessagesIntl = class(TPersistent)
  private
     FwwDBGridDiscardChanges: string;
     FPictureValidateError: string;
     FLocateNoMatches: string;
     FLocateNoMoreMatches: string;
     FMemoChangesWarning:string;
     FRichEditExitWarning: string;
     FRichEditClearWarning: string;
     FRichEditSpellCheckComplete: string;
     FRichEditMSWordNotFound: string;
{     FRichEditLoadWarning: string;}
     FFilterDlgNoCriteria: string;
     FRecordViewExitWarning: string;
  published
     property wwDBGridDiscardChanges: string read FwwDBGridDiscardChanges write FwwDBGridDiscardChanges;
     property PictureValidateError: string read FPictureValidateError write FPictureValidateError;
     property LocateNoMatches: string read FLocateNoMatches write FLocateNoMatches;
     property LocateNoMoreMatches: string read FLocateNoMoreMatches write FLocateNoMoreMatches;
     property MemoChangesWarning: string read FMemoChangesWarning write FMemoChangesWarning;
     property RichEditExitWarning: string read FRichEditExitWarning write FRichEditExitWarning;
     property RichEditClearWarning: string read FRichEditClearWarning write FRichEditClearWarning;
     property RichEditSpellCheckComplete: string read FRichEditSpellCheckComplete write FRichEditSpellCheckComplete;
     property RichEditMSWordNotFound: string read FRichEditMSWordNotFound write FRichEditMSWordNotFound;

     {     property RichEditLoadWarning: string read FRichEditLoadWarning write FRichEditLoadWarning;}
     property FilterDlgNoCriteria : string read FFilterDlgNoCriteria write FFilterDlgNoCriteria;
     property RecordViewExitWarning: string read FRecordViewExitWarning write FRecordViewExitWarning;
  end;

  TwwFilterDialogIntl = class(TPersistent)
  private
      FBtnViewSummary : string;
      FBtnViewSummaryHint  : string;
      FViewSummaryNotText : string;
      FBtnNewSearch  : string;
      FBtnNewSearchHint  : string;
      FFieldOrderLabel  : string;
      FFieldOrderHint : string;
      FAlphabeticLabel : string;
      FLogicalLabel : string;
      FAllFieldsLabel : string;
      FSearchedFieldsLabel : string;
      FStartingRangeLabel : string;
      FEndingRangeLabel : string;
      FStartingRangeHint : string;
      FEndingRangeHint: string;
      FBtnClearMin : string;
      FBtnClearMax : string;
      FBtnClearFiltervalue : string;
      FBtnClearMinHint : string;
      FBtnClearMaxHint : string;
      FBtnClearFilterValueHint : string;
      FByValueLabel  : string;
      FByRangeLabel  : string;
      FFieldValueLabel  : string;
      FFieldValueHint  : string;
      FSearchTypeLabel  : string;
      FSearchTypeHint  : string;
      FMatchExactLabel  : string;
      FMatchStartLabel  : string;
      FMatchAnyLabel  : string;
      FCaseSensitiveLabel  : string;
      FCaseSensitiveHint  : string;
      FNonMatchingLabel   : string;
      FNonMatchingHint    : string;
      FSummaryFieldLabel: string;
      FSummarySearchLabel: string;
      FSummaryValueLabel : string;
      {$ifdef wwdelphi4up}
      FSummaryCaption: string;
      {$endif}
      FFieldsLabel: string;
      FValueRangeTabHint : string;
      FAllSearchedTabHint : string;

  published
      property BtnViewSummary : string read     FBtnViewSummary write FBtnViewSummary;
      property BtnViewSummaryHint  : string read FBtnViewSummaryHint write FBtnViewSummaryHint;
      property BtnNewSearch  : string read      FBtnNewSearch write FBtnNewSearch;
      property BtnNewSearchHint  : string read  FBtnNewSearchHint write FBtnNewSearchHint;
      property FieldOrderLabel  : string read   FFieldOrderLabel write FFieldOrderLabel;
      property FieldOrderHint : string read     FFieldOrderHint write FFieldOrderHint;
      property AlphabeticLabel : string read    FAlphabeticLabel write FAlphabeticLabel;
      property LogicalLabel : string read       FLogicalLabel write FLogicalLabel;
      property AllFieldsLabel : string read     FAllFieldsLabel write FAllFieldsLabel;
      property SearchedFieldsLabel : string read FSearchedFieldsLabel write FSearchedFieldsLabel;
      property StartingRangeLabel : string read FStartingRangeLabel write FStartingRangeLabel;
      property EndingRangeLabel : string read   FEndingRangeLabel write FEndingRangeLabel;
      property StartingRangeHint : string read FStartingRangeHint write FStartingRangeHint;
      property EndingRangeHint: string read     FEndingRangeHint write FEndingRangeHint;
      property BtnClearMin : string read        FBtnClearMin write FBtnClearMin;
      property BtnClearMax : string read        FBtnClearMax write FBtnClearMax;
      property BtnClearFilterValue : string read FBtnClearFilterValue write FBtnClearFilterValue;
      property BtnClearMinHint : string read    FBtnClearMinHint write FBtnClearMinHint;
      property BtnClearMaxHint : string read    FBtnClearMaxHint write FBtnClearMaxHint;
      property BtnClearFilterValueHint : string read FBtnClearFilterValueHint write FBtnClearFilterValueHint;
      property ByValueLabel  : string read      FByValueLabel write FByValueLabel;
      property ByRangeLabel  : string read      FByRangeLabel write FByRangeLabel;
      property FieldValueLabel  : string read   FFieldValueLabel write FFieldValueLabel;
      property FieldValueHint  : string read   FFieldValueHint write FFieldValueHint;
      property SearchTypeLabel  : string read   FSearchTypeLabel write FSearchTypeLabel;
      property SearchTypeHint  : string read   FSearchTypeHint write FSearchTypeHint;
      property MatchExactLabel  : string read   FMatchExactLabel write FMatchExactLabel;
      property MatchStartLabel  : string read   FMatchStartLabel write FMatchStartLabel;
      property MatchAnyLabel  : string read     FMatchAnyLabel write FMatchAnyLabel;
      property CaseSensitiveLabel  : string read FCaseSensitiveLabel write FCaseSensitiveLabel;
      property CaseSensitiveHint  : string read FCaseSensitiveHint write FCaseSensitiveHint;
      property NonMatchingLabel  : string read FNonMatchingLabel write FNonMatchingLabel;
      property NonMatchingHint  : string read FNonMatchingHint write FNonMatchingHint;
      property SummaryFieldLabel: string read FSummaryFieldLabel write FSummaryFieldLabel;
      property SummarySearchLabel: string read FSummarySearchLabel write FSummarySearchLabel;
      property SummaryValueLabel : string read FSummaryValueLabel write FSummaryValueLabel;
      {$ifdef wwdelphi4up}
      property SummaryCaption : string read FSummaryCaption write FSummaryCaption;
      {$endif}
      property FieldsLabel: string read FFieldsLabel write FFieldsLabel;
      property ValueRangeTabHint : string read FValueRangeTabHint write FValueRangeTabHint;
      property AllSearchedTabHint : string read FAllSearchedTabHint write FAllSearchedTabHint;
      property ViewSummaryNotText : string read FViewSummaryNotText write FViewSummaryNotText;

  end;

  TwwRichEditMenuLabels = class(TPersistent)
  private
     FFileCaption: string;
     FLoadCaption: string;
     FSaveAsCaption: string;
     FSaveExitCaption: string;
     FPrintCaption: string;
     FPageSetupCaption: string;
     FExitCaption: string;

     FEditCaption: string;
     FUndoCaption: string;
     FCutCaption: string;
     FCopyCaption: string;
     FPasteCaption: string;
     FClearCaption: string;
     FSelectallCaption: string;
     FFindCaption: string;
     FFindNextCaption: string;
     FReplaceCaption: string;
     FInsertObjectCaption: string;
     FSpellCheckCaption: string;
     {$ifdef wwdelphi4up}
     FInsertCaption: string;
     FRulerCaption: string;
     FRedoCaption: string;
     {$endif}

     FViewCaption: string;
     FToolbarCaption: string;
     FFormatBarCaption: string;
     FViewStatusBarCaption: string;
     FOptionsCaption: string;

     FFormatCaption: string;
     FToolCaption: string;     
     FFontCaption: string;
     FBulletStyleCaption: string;
     FParagraphCaption: string;
     FTabsCaption: string;

     FHelpCaption: string;
  published
     property FileCaption : string read FFileCaption write FFileCaption;
     property LoadCaption : string read FLoadCaption write FLoadCaption;
     property SaveAsCaption : string read FSaveAsCaption write FSaveAsCaption;
     property SaveExitCaption : string read FSaveExitCaption write FSaveExitCaption;
     property PrintCaption : string read FPrintCaption write FPrintCaption;
     property PageSetupCaption : string read FPageSetupCaption write FPageSetupCaption;
     property ExitCaption : string read FExitCaption write FExitCaption;

     property EditCaption : string read FEditCaption write FEditCaption;
     property UndoCaption : string read FUndoCaption write FUndoCaption;
     property CutCaption : string read FCutCaption write FCutCaption;
     property CopyCaption : string read FCopyCaption write FCopyCaption;
     property PasteCaption : string read FPasteCaption write FPasteCaption;
     property ClearCaption : string read FClearCaption write FClearCaption;
     property SelectallCaption : string read FSelectallCaption write FSelectallCaption;
     property FindCaption : string read FFindCaption write FFindCaption;
     property FindNextCaption : string read FFindNextCaption write FFindNextCaption;
     property ReplaceCaption : string read FReplaceCaption write FReplaceCaption;
     property InsertObjectCaption : string read FInsertObjectCaption write FInsertObjectCaption;
     property ToolCaption : string read FToolCaption write FToolCaption;
     property SpellCheckCaption : string read FSpellCheckCaption write FSpellCheckCaption;
     {$ifdef wwdelphi4up}
     property InsertCaption : string read FInsertCaption write FInsertCaption;
     property RulerCaption: string read FRulerCaption write FRulerCaption;
     property RedoCaption: string read FRedoCaption write FRedoCaption;
     {$endif}
     property ViewCaption : string read FViewCaption write FViewCaption;
     property ToolbarCaption : string read FToolbarCaption write FToolbarCaption;
     property FormatBarCaption : string read FFormatBarCaption write FFormatBarCaption;
     property ViewStatusBarCaption : string read FViewStatusBarCaption write FViewStatusBarCaption;
     property OptionsCaption : string read FOptionsCaption write FOptionsCaption;

     property FormatCaption : string read FFormatCaption write FFormatCaption;
     property FontCaption : string read FFontCaption write FFontCaption;
     property BulletStyleCaption : string read FBulletStyleCaption write FBulletStyleCaption;
     property ParagraphCaption : string read FParagraphCaption write FParagraphCaption;
     property TabsCaption : string read FTabsCaption write FTabsCaption;

     property HelpCaption : string read FHelpCaption write FHelpCaption;
  end;

  TwwRichEditPopupMenuLabels = class(TPersistent)
  private
   {PopupMenu Captions for accelerators}
     FEditCaption: string;
     FViewCaption: string;
     FCutCaption: string;
     FCopyCaption: string;
     FPasteCaption: string;
     FFontCaption: string;
     FBulletStyleCaption: string;
     FBoldCaption: string;
     FItalicCaption: string;
     FUnderlineCaption: string;
     FParagraphCaption: string;
     FTabsCaption: string;
     FFindCaption: string;
     FReplaceCaption: string;
     FInsertObjectCaption: string;
     FSpellCheckCaption: string;
     FObjectPropertiesCaption: string;
  published
    {PopupMenu Captions for accelerators}
     property EditCaption : string read FEditCaption write FEditCaption;
     property ViewCaption : string read FViewCaption write FViewCaption;
     property CutCaption : string read FCutCaption write FCutCaption;
     property CopyCaption : string read FCopyCaption write FCopyCaption;
     property PasteCaption : string read FPasteCaption write FPasteCaption;
     property FontCaption : string read FFontCaption write FFontCaption;
     property BulletStyleCaption : string read FBulletStyleCaption write FBulletStyleCaption;
     property BoldCaption : string read FBoldCaption write FBoldCaption;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产成人porn| 欧美自拍丝袜亚洲| 午夜精品久久久久久不卡8050| 久久美女艺术照精彩视频福利播放| 欧美日韩精品一区二区天天拍小说| 欧美专区日韩专区| 欧美精选一区二区| 日韩免费观看高清完整版在线观看| 欧美一区二区视频网站| 日韩美女视频在线| 国产日韩欧美一区二区三区乱码| 国产视频在线观看一区二区三区| 国产女同性恋一区二区| 综合精品久久久| 亚洲精品免费播放| 奇米色一区二区| 国产激情91久久精品导航| av网站一区二区三区| av电影一区二区| 色香蕉成人二区免费| 欧美日韩一区二区在线观看| 日韩欧美在线1卡| 国产午夜精品一区二区三区嫩草 | 狠狠v欧美v日韩v亚洲ⅴ| 狠狠色丁香久久婷婷综| 99久久免费国产| 制服.丝袜.亚洲.中文.综合| 久久精品网站免费观看| 亚洲欧美aⅴ...| 蜜桃av噜噜一区| 成人毛片在线观看| 欧美精品一级二级三级| 国产精品午夜免费| 视频在线在亚洲| 成人一区二区视频| 欧美一级国产精品| √…a在线天堂一区| 男人操女人的视频在线观看欧美 | 亚洲一区二区在线免费观看视频| 蜜桃av一区二区三区| 99re这里只有精品首页| 欧美不卡视频一区| 一区二区激情视频| 国产99久久久久| 91精品国产免费| 一区二区三区91| 国产91精品一区二区| 日韩一级欧美一级| 亚洲黄色小说网站| 不卡一区二区三区四区| 欧美刺激午夜性久久久久久久| 亚洲女人的天堂| 成人免费看的视频| 久久影院视频免费| 日韩av中文字幕一区二区三区| 91小视频在线| 国产精品久久久久久久久图文区| 精品亚洲成av人在线观看| 欧美精品aⅴ在线视频| 一色桃子久久精品亚洲| 国产91在线看| 久久久精品国产免费观看同学| 日韩国产在线一| 欧美亚洲动漫精品| 亚洲午夜免费电影| 日本久久电影网| 亚洲精品成a人| 色综合天天性综合| 亚洲免费观看视频| 色综合久久久久综合| 国产精品久久久久久久久久久免费看 | 91免费观看视频| 国产精品久久久久久久久久免费看 | 日韩欧美自拍偷拍| 日本大胆欧美人术艺术动态| 欧美人妖巨大在线| 秋霞国产午夜精品免费视频| 在线不卡中文字幕播放| 美女脱光内衣内裤视频久久影院| 制服丝袜国产精品| 极品少妇xxxx精品少妇| 久久久精品国产免费观看同学| 国产一区二区久久| 中文字幕高清不卡| 91看片淫黄大片一级在线观看| 亚洲精品第一国产综合野| 欧美在线观看一区| 婷婷丁香久久五月婷婷| 日韩美一区二区三区| 国产成人免费在线| 亚洲欧美日韩在线不卡| 欧美乱妇一区二区三区不卡视频| 麻豆精品视频在线| 欧美极品少妇xxxxⅹ高跟鞋| 91亚洲精品一区二区乱码| 一区二区三区成人| 日韩色视频在线观看| 国产精品 欧美精品| 亚洲婷婷国产精品电影人久久| 欧美日韩亚洲另类| 国产在线播放一区| 亚洲同性gay激情无套| 91精品蜜臀在线一区尤物| 国产激情91久久精品导航| 亚洲精品久久嫩草网站秘色| 日韩欧美综合在线| 91在线观看下载| 久久精品免费观看| 最新高清无码专区| 日韩一区二区三区四区五区六区| 高清国产一区二区| 亚洲国产cao| 国产精品欧美一级免费| 欧美亚日韩国产aⅴ精品中极品| 精品一区二区日韩| 亚洲一区二区三区中文字幕| 久久久亚洲国产美女国产盗摄 | 国产精品福利影院| 欧美日韩在线播放一区| 国产**成人网毛片九色 | 亚洲人成网站在线| 日韩欧美一区二区久久婷婷| 色域天天综合网| 国产大陆a不卡| 亚洲国产另类av| 中文一区在线播放| 久久综合视频网| 欧美日韩中文另类| 97se亚洲国产综合在线| 另类小说视频一区二区| 亚洲国产精品视频| 《视频一区视频二区| 国产欧美久久久精品影院| 日韩美一区二区三区| 欧美日韩性生活| 欧美怡红院视频| 91毛片在线观看| 99国产一区二区三精品乱码| 国产精品18久久久久久久久久久久| 日韩中文欧美在线| 亚洲电影欧美电影有声小说| 亚洲欧美福利一区二区| 中文字幕一区二区三区视频| 中文字幕不卡在线播放| 国产婷婷色一区二区三区四区| 欧美r级电影在线观看| 欧美精品乱码久久久久久按摩| 在线一区二区三区四区五区| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 精品99一区二区| 日韩欧美中文一区| 欧美大胆人体bbbb| 久久中文字幕电影| 国产日韩一级二级三级| 中文字幕乱码一区二区免费| 欧美激情一区二区三区全黄| 久久精品人人做| 国产精品麻豆视频| 1000精品久久久久久久久| 依依成人综合视频| 亚洲国产精品一区二区www在线| 天天综合天天综合色| 免费日韩伦理电影| 韩国v欧美v亚洲v日本v| 国产二区国产一区在线观看| 成人免费va视频| 欧洲一区二区av| 91精品国产黑色紧身裤美女| 日韩免费高清电影| 国产农村妇女毛片精品久久麻豆| 国产精品污www在线观看| 亚洲人妖av一区二区| 亚洲成国产人片在线观看| 免费观看在线综合色| 国产精品1区二区.| 91福利国产精品| 欧美刺激脚交jootjob| 国产区在线观看成人精品| 亚洲精品视频在线观看免费| 日产精品久久久久久久性色| 久久激情五月激情| 99麻豆久久久国产精品免费优播| 欧美亚洲一区二区在线观看| 日韩欧美一区中文| 亚洲欧美自拍偷拍| 秋霞电影网一区二区| 国产成人福利片| 欧洲国产伦久久久久久久| 精品理论电影在线观看| 亚洲美女免费在线| 久久国产综合精品| 91国产成人在线| 久久一区二区视频| 亚洲综合激情网| 成人午夜精品在线| 欧美一级高清大全免费观看| 自拍偷拍国产亚洲| 国产一区91精品张津瑜| 欧美在线观看视频一区二区三区 | 成人av电影在线|