亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
777亚洲妇女| 亚洲国产aⅴ天堂久久| 欧美性受xxxx黑人xyx性爽| 国产一区二区h| 日韩中文字幕一区二区三区| 国产精品二三区| 亚洲欧洲精品一区二区三区| 国产日韩欧美一区二区三区乱码 | 色88888久久久久久影院野外| 国产suv精品一区二区6| 国产精品69久久久久水密桃| 成人性色生活片| 91免费国产视频网站| 欧美亚洲动漫另类| 91精品国产91久久久久久最新毛片| 69久久99精品久久久久婷婷| 91精品国产综合久久久蜜臀图片| 日韩手机在线导航| 精品国产91久久久久久久妲己| 国产视频视频一区| 亚洲免费在线看| 日韩在线播放一区二区| 精品一区二区三区视频在线观看| 国产成+人+日韩+欧美+亚洲| 91丝袜高跟美女视频| 3751色影院一区二区三区| 精品不卡在线视频| 亚洲欧洲美洲综合色网| 天堂一区二区在线| 亚洲已满18点击进入久久| 日本sm残虐另类| 国产福利一区二区三区视频| 51精品久久久久久久蜜臀| av色综合久久天堂av综合| 欧美久久久久免费| 国产女同互慰高潮91漫画| 一区二区三区加勒比av| 奇米影视一区二区三区| 99天天综合性| 91精品国产免费| 国产精品拍天天在线| 日韩不卡一二三区| aaa国产一区| 久久免费看少妇高潮| 亚洲一级不卡视频| 成人激情黄色小说| 精品美女被调教视频大全网站| 亚洲色图视频免费播放| 韩国三级电影一区二区| 欧美日韩国产美女| 亚洲视频电影在线| 国产高清亚洲一区| 日韩欧美国产精品| 午夜精品久久久久久久久久久| 成人精品一区二区三区四区| 欧美v亚洲v综合ⅴ国产v| 亚洲资源在线观看| 国产高清精品在线| 精品国产髙清在线看国产毛片| 亚洲国产精品天堂| 色综合久久久久综合体| 国产精品欧美久久久久一区二区 | 精品国产免费人成电影在线观看四季 | 欧美日韩亚洲不卡| 欧洲激情一区二区| 国产精品九色蝌蚪自拍| 经典三级在线一区| 欧美一区二区私人影院日本| 成人免费在线视频观看| 成人一级片在线观看| 久久久久久久久久久电影| 久久97超碰国产精品超碰| 91精品国产色综合久久不卡蜜臀| 亚洲欧美日韩一区二区| av电影一区二区| 国产精品乱人伦中文| www.欧美.com| 国产精品三级在线观看| 国产成a人无v码亚洲福利| 中文字幕成人网| gogogo免费视频观看亚洲一| 国产精品美女久久久久aⅴ| 成人夜色视频网站在线观看| 国产精品沙发午睡系列990531| 成人高清免费在线播放| 综合久久综合久久| 一本大道av伊人久久综合| 亚洲精品成a人| 欧美日韩国产高清一区二区三区| 日韩va亚洲va欧美va久久| 欧美变态口味重另类| 国产精品一二三四五| 国产精品天干天干在观线| 91日韩在线专区| 亚洲综合999| xf在线a精品一区二区视频网站| 精品影视av免费| 欧美一级精品在线| 国产a精品视频| 亚洲精品中文在线观看| 91精品国产一区二区| 国产 欧美在线| 亚洲福利视频三区| 久久麻豆一区二区| 一本一道综合狠狠老| 亚洲va在线va天堂| 日韩欧美一区在线| 成人涩涩免费视频| 视频一区二区国产| 国产精品久久久久久一区二区三区| 97精品电影院| 美美哒免费高清在线观看视频一区二区| 日韩免费观看高清完整版 | 国产精品正在播放| 亚洲综合在线五月| 欧美精品一区二区三区蜜桃视频| 一本色道久久综合亚洲91 | 国产日产欧美一区二区视频| 欧美三日本三级三级在线播放| 久久99久久99| 日本一区二区电影| 欧美一区二区三区思思人| 91一区在线观看| 国产精品一区2区| 午夜精品在线视频一区| 中文一区二区完整视频在线观看| 91.com视频| 欧美最新大片在线看 | 一区二区三区四区五区视频在线观看| 日韩欧美综合在线| 在线观看区一区二| 99re这里只有精品视频首页| 久99久精品视频免费观看| 偷拍亚洲欧洲综合| 亚洲激情av在线| 国产精品系列在线| 久久看人人爽人人| 欧美va在线播放| 7777精品伊人久久久大香线蕉的 | 国产日韩高清在线| 亚洲精品一区二区三区在线观看| 欧美日韩国产首页| 欧美性猛片aaaaaaa做受| 欧美日韩在线播| 一本色道**综合亚洲精品蜜桃冫| 处破女av一区二区| 丰满少妇在线播放bd日韩电影| 国产综合色在线视频区| 久久黄色级2电影| 天堂久久久久va久久久久| 精品少妇一区二区三区 | 欧美日韩一区精品| 色一区在线观看| 色88888久久久久久影院野外| 99天天综合性| 在线免费av一区| 欧美日韩一区二区三区四区 | 91精品国产欧美一区二区18| 91精品午夜视频| 欧美一区二区观看视频| 日韩一区二区三区视频在线 | 日本精品裸体写真集在线观看| 91在线云播放| 欧美天天综合网| 欧美一卡二卡在线观看| 日韩精品最新网址| 26uuu国产一区二区三区| 日本一区二区三区国色天香| 日韩美女久久久| 亚洲成a天堂v人片| 美女高潮久久久| 成人国产在线观看| 色欧美乱欧美15图片| 欧美人妇做爰xxxⅹ性高电影| 欧美一级在线观看| 久久午夜老司机| 国产精品成人一区二区三区夜夜夜| 日韩理论片一区二区| 加勒比av一区二区| 国产69精品久久久久毛片| 99re热视频精品| 制服丝袜成人动漫| 日本一区二区三区dvd视频在线| 亚洲精品免费电影| 精品无码三级在线观看视频| 不卡的电影网站| 日韩一级大片在线观看| 国产丝袜在线精品| 亚洲精选一二三| 国产精品18久久久久久vr| 91成人免费在线| 国产欧美一区二区精品秋霞影院| 亚洲v中文字幕| 成人精品鲁一区一区二区| 88在线观看91蜜桃国自产| 国产精品久久久久久久久免费桃花| 日韩制服丝袜先锋影音| 99精品视频中文字幕| 精品国产伦一区二区三区观看体验 | 国产欧美一二三区|