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

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? wwintl.pas

?? 本系統(tǒng)為病歷管理系統(tǒng)
?? PAS
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
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;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
综合av第一页| 亚洲欧美另类久久久精品2019| 国产91精品一区二区麻豆亚洲| 中文字幕一区二区三区蜜月| 欧美日韩成人在线| 成人99免费视频| 麻豆精品一区二区三区| 亚洲男人天堂av网| 国产亚洲欧美在线| 欧美一区二区三区免费观看视频| 99久久99久久精品免费看蜜桃 | 欧美精品一区二区三区久久久| 99麻豆久久久国产精品免费优播| 久久99国产精品免费网站| 亚洲一区二区欧美日韩| 中文字幕av在线一区二区三区| 日韩欧美电影一区| 色欧美片视频在线观看| 成人性生交大片免费看中文网站| 麻豆精品视频在线| 亚洲大片精品永久免费| 亚洲桃色在线一区| 国产精品久久久久久久岛一牛影视| 日韩精品一区二区在线| 欧美三级韩国三级日本三斤| 99久久久免费精品国产一区二区| 国产精品一区2区| 精品一区二区av| 美女视频黄免费的久久 | 国产成人午夜精品影院观看视频 | 肉丝袜脚交视频一区二区| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆 | 欧美视频三区在线播放| eeuss鲁片一区二区三区在线观看| 国产乱码精品一区二区三区忘忧草 | 天天综合天天做天天综合| 亚洲精品一二三| 亚洲视频香蕉人妖| 国产精品久久福利| 中文字幕二三区不卡| 中文字幕av一区 二区| 国产区在线观看成人精品| 久久久久免费观看| 国产色综合一区| 国产欧美日韩精品在线| 国产午夜精品久久久久久久 | 欧美精选午夜久久久乱码6080| 欧美中文一区二区三区| 欧美在线观看你懂的| 欧美午夜精品久久久久久孕妇| 色婷婷综合久久久久中文一区二区| 白白色亚洲国产精品| 99国产欧美久久久精品| 99re在线视频这里只有精品| 色综合天天在线| 在线看国产一区二区| 欧美丰满少妇xxxxx高潮对白| 91精品国产一区二区三区香蕉| 日韩小视频在线观看专区| 久久综合色综合88| 国产日韩欧美一区二区三区乱码| 国产精品久久久久久久蜜臀 | 中文字幕av免费专区久久| 综合自拍亚洲综合图不卡区| ㊣最新国产の精品bt伙计久久| 夜夜嗨av一区二区三区四季av| 亚洲女与黑人做爰| 日韩和欧美的一区| 黄页视频在线91| 成人精品鲁一区一区二区| 91麻豆国产福利在线观看| 欧美久久久久久久久| 精品国产sm最大网站免费看| 国产视频视频一区| 亚洲尤物在线视频观看| 美国十次综合导航| 99国产精品久久| 欧美日韩一区二区在线视频| 亚洲精品在线免费观看视频| 国产精品第五页| 国产一区二区三区| 色天使色偷偷av一区二区| 欧美一区二区三区日韩视频| 亚洲国产激情av| 亚洲成av人片一区二区梦乃| 国产麻豆视频一区二区| 91国产免费看| 欧美sm美女调教| 一区二区三区久久久| 国内精品伊人久久久久影院对白| 色综合久久天天| 精品久久久久久久久久久久久久久久久| 国产精品久久久久久久久免费丝袜 | 欧美电影免费观看高清完整版在线观看 | 国产精品中文有码| 欧美在线视频不卡| 国产亚洲成aⅴ人片在线观看| 亚洲成人自拍网| 成人午夜视频福利| 884aa四虎影成人精品一区| 国产精品无遮挡| 午夜精品成人在线| 99精品黄色片免费大全| 欧美精品一区二区三区一线天视频 | 欧美一区二区视频观看视频| 国产精品国产三级国产普通话99| 欧美亚洲一区二区在线| 久久精品免视看| 日本va欧美va瓶| 91黄视频在线观看| 国产三级一区二区| 蜜臀av一区二区| 91久久免费观看| 欧美激情艳妇裸体舞| 美女一区二区三区在线观看| 欧美专区日韩专区| 亚洲欧美日韩成人高清在线一区| 国产精品一区二区三区网站| 欧美一区二区三区视频在线观看| 亚洲男同性恋视频| jlzzjlzz国产精品久久| 久久久久久久综合日本| 日本成人在线一区| 欧美视频在线观看一区| 亚洲女与黑人做爰| 99精品久久99久久久久| 国产清纯白嫩初高生在线观看91| 麻豆精品视频在线观看| 欧美日韩成人在线一区| 亚洲综合男人的天堂| 91一区二区在线观看| 中文字幕欧美日本乱码一线二线| 国产精品一区二区视频| 久久综合中文字幕| 极品美女销魂一区二区三区免费| 69p69国产精品| 日日嗨av一区二区三区四区| 欧美日韩免费电影| 午夜亚洲国产au精品一区二区| 欧美在线观看禁18| 亚洲成av人片一区二区| 欧美性色黄大片| 亚洲国产另类精品专区| 欧美网站大全在线观看| 亚洲国产精品一区二区久久 | 国产人久久人人人人爽| 国产乱码一区二区三区| 国产农村妇女精品| 成人综合在线网站| 日韩一区欧美一区| 在线区一区二视频| 亚洲国产精品影院| 337p亚洲精品色噜噜狠狠| 日韩av不卡在线观看| 日韩精品中午字幕| 国产乱国产乱300精品| 国产欧美精品一区二区色综合 | 亚洲成av人在线观看| 884aa四虎影成人精品一区| 免费看欧美女人艹b| 久久久久久久久久久久久夜| 福利91精品一区二区三区| 国产精品午夜在线| 欧美中文字幕一区二区三区亚洲| 视频一区视频二区中文字幕| 欧美精品一区二区在线播放| 北条麻妃一区二区三区| 亚洲男人都懂的| 7777精品伊人久久久大香线蕉| 久久精品国产99久久6| 国产日韩欧美不卡在线| 91福利在线播放| 老汉av免费一区二区三区| 日本一区二区三区国色天香| 一本大道久久a久久精品综合| 天堂精品中文字幕在线| 久久久美女毛片| 91激情在线视频| 久久精品国产免费| 亚洲欧美日韩国产中文在线| 欧美一区二区私人影院日本| 国产高清久久久久| 亚洲一级二级三级在线免费观看| 欧美成人vr18sexvr| av一本久道久久综合久久鬼色| 日韩专区一卡二卡| 日本一区二区三区电影| 欧美精品乱码久久久久久| 国产精品自产自拍| 午夜伊人狠狠久久| 国产欧美精品一区二区三区四区 | 国产宾馆实践打屁股91| 夜夜操天天操亚洲| 亚洲国产高清aⅴ视频| 欧美一区二区日韩一区二区| 成人av电影观看| 精品一区二区在线播放| 亚洲午夜羞羞片| 国产精品每日更新| 欧美电影免费观看高清完整版在线|