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

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

?? wwintl.pas

?? 一套DELPHI病歷管理源碼
?? 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一区二区三区免费野_久草精品视频
日韩av中文在线观看| 男人的j进女人的j一区| 成人免费高清在线观看| 亚洲精品成人悠悠色影视| 欧美人与性动xxxx| 国产成人精品亚洲午夜麻豆| 亚洲品质自拍视频| 日韩一级精品视频在线观看| av一区二区不卡| 日韩国产精品久久久| 五月婷婷综合网| 国产精品高潮呻吟| 欧美一级黄色大片| 日韩欧美一区二区免费| 92精品国产成人观看免费 | 丝袜亚洲精品中文字幕一区| 久久久久88色偷偷免费| 7777精品伊人久久久大香线蕉 | 在线成人免费观看| eeuss鲁一区二区三区| 91年精品国产| 成人一区二区三区在线观看| 99精品视频在线免费观看| 成人99免费视频| 国产乱国产乱300精品| 欧美96一区二区免费视频| 国产在线不卡一区| 日韩精品91亚洲二区在线观看| 日韩国产一二三区| 国产成人鲁色资源国产91色综| 成人av电影在线网| 欧美色区777第一页| 一本色道a无线码一区v| 99精品欧美一区二区三区小说| 91日韩一区二区三区| 欧美一区二区视频在线观看| 欧美日韩综合在线免费观看| 欧美电视剧免费全集观看| 亚洲欧洲美洲综合色网| 国产女同互慰高潮91漫画| 26uuu精品一区二区| 久久综合狠狠综合久久激情| 亚洲色图欧美在线| 一区二区三区中文字幕在线观看| 亚洲视频一二三| 看电视剧不卡顿的网站| 精品一区免费av| 国产成a人亚洲精品| 国产aⅴ精品一区二区三区色成熟| 色婷婷精品久久二区二区蜜臂av| 精品国产一二三区| 国产丝袜美腿一区二区三区| 国产精品国产三级国产有无不卡| 日本不卡高清视频| 欧美视频三区在线播放| 91麻豆精品久久久久蜜臀| 国产欧美日韩精品一区| 免费观看久久久4p| 欧美视频精品在线观看| 亚洲天堂a在线| 丁香激情综合五月| 国产三级欧美三级日产三级99 | 免费黄网站欧美| 欧美中文字幕不卡| 日韩一级完整毛片| 亚洲国产成人av网| 精品一区二区日韩| 欧美久久久久中文字幕| 国内精品国产成人国产三级粉色 | 国产色爱av资源综合区| 男人的j进女人的j一区| 欧美精品tushy高清| 一区二区三区在线免费视频| 91在线免费看| 亚洲日本免费电影| 一本一道波多野结衣一区二区| 国产精品你懂的在线欣赏| 亚洲自拍偷拍九九九| 免费在线成人网| 日韩精品一区二区三区四区视频 | 久久亚区不卡日本| 激情欧美一区二区三区在线观看| 欧美一区二区三区爱爱| 三级一区在线视频先锋| 在线不卡的av| 久久不见久久见免费视频1| 91精品在线免费观看| 六月婷婷色综合| www国产精品av| 成人午夜av影视| 国产精品白丝在线| 欧美日韩你懂得| 免费日韩伦理电影| 国产精品毛片久久久久久久| 成人午夜视频免费看| 国产精品久久久久三级| 色吊一区二区三区| 久久久亚洲国产美女国产盗摄| 激情综合一区二区三区| 欧美激情在线免费观看| 蓝色福利精品导航| 国产精品理论片在线观看| 一本大道久久a久久综合婷婷| 亚洲激情图片小说视频| 欧美一区二区三区思思人| 国产精品一区不卡| 亚洲国产精品久久一线不卡| 日韩免费观看高清完整版在线观看| 国内精品伊人久久久久av一坑| 国产嫩草影院久久久久| 欧美三级三级三级爽爽爽| 久久99精品久久久久| 1000精品久久久久久久久| 在线综合视频播放| 成人国产精品免费观看动漫 | 一本久久综合亚洲鲁鲁五月天| 三级欧美在线一区| 欧美国产亚洲另类动漫| 欧美日韩中文字幕精品| 国产v综合v亚洲欧| 天堂av在线一区| 国产精品久久久久影院老司| 3d动漫精品啪啪1区2区免费| 成人美女在线视频| 美国欧美日韩国产在线播放| 欧美一区午夜视频在线观看| 成人性生交大片| 麻豆精品久久精品色综合| 亚洲女同一区二区| 久久久99精品免费观看不卡| 欧美一区二区三区视频在线 | 亚洲一区二区三区四区五区中文 | 91麻豆免费观看| 九九精品视频在线看| 洋洋成人永久网站入口| 国产午夜精品一区二区三区视频| 欧美精品第一页| 欧美亚日韩国产aⅴ精品中极品| 国产成人亚洲综合a∨猫咪| 免费看欧美女人艹b| 亚洲精品乱码久久久久久久久| 国产日韩v精品一区二区| 91麻豆精品国产91久久久资源速度| 91一区二区在线观看| 风间由美一区二区三区在线观看 | 精品国产欧美一区二区| 欧美日韩aaa| 欧美日韩视频不卡| 91福利国产成人精品照片| www.欧美色图| 成人av网站在线观看| www.爱久久.com| 丰满白嫩尤物一区二区| 国产激情视频一区二区在线观看| 91视频精品在这里| 成人av在线资源网站| 成人一级片网址| thepron国产精品| 91丨九色丨尤物| 91捆绑美女网站| 欧美中文字幕一二三区视频| 欧美午夜精品一区二区蜜桃| 色婷婷综合久久| 欧美精品日日鲁夜夜添| 3d成人动漫网站| 精品捆绑美女sm三区| 97久久精品人人澡人人爽| 97超碰欧美中文字幕| 色综合色综合色综合| 欧美视频一区在线| 欧美一级夜夜爽| 国产亚洲一本大道中文在线| 国产欧美日韩在线视频| 亚洲色图清纯唯美| 日韩福利视频网| 国产精品一区二区在线播放| 成人深夜视频在线观看| 91高清在线观看| 日韩一级黄色片| 国产精品区一区二区三区| 亚洲激情图片qvod| 老司机午夜精品| 成人黄色av网站在线| 欧美日韩高清影院| 久久色成人在线| 亚洲精品美腿丝袜| 韩国女主播一区二区三区| 972aa.com艺术欧美| 91精品国产aⅴ一区二区| 日本一区二区在线不卡| 亚洲综合清纯丝袜自拍| 国产一区二区三区电影在线观看| eeuss国产一区二区三区| 91超碰这里只有精品国产| 国产欧美一区二区精品仙草咪 | 欧美精品三级在线观看| 欧美极品aⅴ影院| 看电影不卡的网站| 在线视频欧美区| 日本一区二区三区dvd视频在线|