亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产自产高清不卡| 不卡欧美aaaaa| 成人av网站在线观看| 欧美日韩视频在线观看一区二区三区| 欧美一区二区美女| 亚洲男人的天堂一区二区 | 国产精品911| 欧美一级夜夜爽| 夜夜精品视频一区二区| 国产精品综合视频| 日韩精品专区在线影院重磅| 亚洲综合免费观看高清完整版 | 国产色婷婷亚洲99精品小说| 日本不卡一区二区三区| 色爱区综合激月婷婷| 欧美高清一级片在线观看| 久久精品国产久精国产| 欧美日韩国产一二三| 亚洲精品视频一区| 91亚洲国产成人精品一区二区三| 精品国产一区a| 免费久久精品视频| 欧美精品xxxxbbbb| 亚洲国产成人精品视频| 在线看日韩精品电影| 国产精品久久久久久久久免费丝袜 | a美女胸又www黄视频久久| 337p日本欧洲亚洲大胆色噜噜| 日本欧美大码aⅴ在线播放| 欧美日韩国产系列| 日韩成人免费在线| 日韩一区二区三| 免费成人结看片| 精品国产免费一区二区三区四区 | 五月激情综合色| 欧美日韩免费在线视频| 亚洲国产精品人人做人人爽| 欧美伊人久久大香线蕉综合69| 一区二区三区色| 欧美性视频一区二区三区| 亚洲在线视频网站| 欧美日韩激情在线| 日本亚洲电影天堂| 精品成人a区在线观看| 国内久久精品视频| 国产日韩av一区二区| 岛国精品在线播放| 日韩毛片在线免费观看| 色综合天天天天做夜夜夜夜做| 亚洲乱码国产乱码精品精98午夜| 一道本成人在线| 亚洲r级在线视频| 精品入口麻豆88视频| 国产精品一区在线观看你懂的| 欧美国产日韩a欧美在线观看| www.欧美精品一二区| 亚洲黄一区二区三区| 欧美日韩一区二区三区在线| 日韩和的一区二区| 久久久国产精品不卡| 91看片淫黄大片一级| 日本视频在线一区| 国产亚洲一区二区三区在线观看 | 成人晚上爱看视频| 亚洲综合清纯丝袜自拍| 久久综合久久99| 色系网站成人免费| 看片网站欧美日韩| 亚洲欧美一区二区三区久本道91| 欧美亚洲综合色| 国产精品18久久久久久久久久久久| 国产精品久久久久一区二区三区| 欧美日韩国产一级二级| 国产成+人+日韩+欧美+亚洲| 亚洲高清不卡在线| 国产亚洲精品bt天堂精选| 欧美在线色视频| 顶级嫩模精品视频在线看| 午夜私人影院久久久久| 国产精品麻豆久久久| 欧美精品在线观看播放| 99久久国产免费看| 国产一区二区三区av电影| 亚洲图片欧美视频| 国产精品青草综合久久久久99| 8v天堂国产在线一区二区| 99热这里都是精品| 国产露脸91国语对白| 视频一区二区三区入口| 亚洲人成7777| 中文一区在线播放| 精品国产一区a| 欧美一区二区在线不卡| 欧美色图在线观看| 93久久精品日日躁夜夜躁欧美| 国内精品免费在线观看| 欧美aaaaa成人免费观看视频| 一区二区高清视频在线观看| 国产精品午夜电影| 国产欧美精品一区| 久久综合久色欧美综合狠狠| 日韩视频免费观看高清完整版在线观看 | 精品久久久久一区| 欧美一区二区三区在线看| 一本色道久久综合亚洲精品按摩| www.亚洲免费av| 成人免费视频一区| 成人精品电影在线观看| 成人午夜视频网站| 成人sese在线| 北条麻妃国产九九精品视频| 国产精品亚洲一区二区三区妖精| 老司机精品视频线观看86| 免费久久精品视频| 美女网站色91| 国产一区二区h| 国产福利精品一区| 成人午夜在线视频| 色婷婷亚洲精品| 欧美在线观看禁18| 欧美久久婷婷综合色| 在线电影一区二区三区| 欧美一区二区视频在线观看2020| 日韩欧美第一区| 久久嫩草精品久久久精品一| 久久久久88色偷偷免费| 国产午夜精品一区二区三区视频| 国产精品毛片久久久久久| 最近中文字幕一区二区三区| 亚洲日本青草视频在线怡红院 | 韩国精品一区二区| 国产成人免费在线| 成人18视频日本| 色94色欧美sute亚洲线路一ni | 92精品国产成人观看免费| 在线观看视频91| 69久久99精品久久久久婷婷 | 日韩视频在线观看一区二区| 久久亚洲一区二区三区四区| 国产精品青草久久| 亚洲mv大片欧洲mv大片精品| 极品瑜伽女神91| 成人动漫一区二区在线| 91成人免费在线| 日韩欧美国产wwwww| 国产精品国产自产拍在线| 亚洲综合色在线| 寂寞少妇一区二区三区| 99久久久久久| 日韩一区二区精品在线观看| 中文字幕欧美激情一区| 亚洲国产精品一区二区久久| 国产一区二区三区免费观看| 欧美在线视频不卡| 中文字幕精品三区| 视频一区欧美精品| av中文字幕一区| 精品奇米国产一区二区三区| 亚洲欧美一区二区三区久本道91| 久久成人羞羞网站| 欧美在线999| 欧美激情自拍偷拍| 青青草国产成人av片免费| 99热国产精品| 久久综合久久综合亚洲| 视频一区在线播放| 91猫先生在线| 国产精品视频一二三区| 日本欧美大码aⅴ在线播放| 91日韩在线专区| 久久天天做天天爱综合色| 午夜视频一区在线观看| 91免费版在线看| 久久精品无码一区二区三区| 日韩激情av在线| 欧美日韩另类一区| 一区二区三区精品在线观看| 国产精品91一区二区| 久久综合中文字幕| 蜜臀久久99精品久久久久宅男| 91精彩视频在线观看| 欧美高清在线一区| 国产suv精品一区二区883| 日韩精品在线一区二区| 丝袜亚洲另类欧美综合| 在线观看一区二区视频| 亚洲女同ⅹxx女同tv| 国产99久久久久| 国产欧美精品一区| 福利一区在线观看| 久久精品一区二区| 国产999精品久久久久久绿帽| 精品999在线播放| 狠狠色综合日日| 久久夜色精品国产欧美乱极品| 开心九九激情九九欧美日韩精美视频电影 | 在线视频国产一区| 樱桃视频在线观看一区| 色综合中文字幕国产 | 国产精品一二二区|