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

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

?? wwintl.pas

?? 醫(yī)院病歷管理簡易版,完全用DELPHI實現(xiàn).
?? 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一区二区三区免费野_久草精品视频
成人sese在线| 精品国产乱码久久久久久蜜臀| 在线不卡欧美精品一区二区三区| 欧美精品一区二区三区四区| 亚洲高清在线精品| 成人永久免费视频| 欧美第一区第二区| 爽好多水快深点欧美视频| 99麻豆久久久国产精品免费| 欧美草草影院在线视频| 天堂在线亚洲视频| 欧美三级日韩在线| 亚洲精品亚洲人成人网在线播放| 国产一区二区成人久久免费影院| 91精品国产综合久久香蕉的特点 | 欧美三级电影精品| 亚洲精品成人悠悠色影视| 国产成人aaaa| 久久久综合视频| 久久精品国产在热久久| 777xxx欧美| 亚洲地区一二三色| 欧美日韩亚洲综合在线 | 91久久免费观看| 国产亚洲一二三区| 国产盗摄一区二区| 国产婷婷精品av在线| 国产在线精品视频| 国产欧美日韩麻豆91| 国产精品一二三| 精品国产乱码久久久久久蜜臀 | 美女视频黄 久久| 91精品国产欧美一区二区18| 亚洲h在线观看| 欧美一区二区三区的| 日韩av电影天堂| 精品日韩一区二区三区 | 久久精品无码一区二区三区| 精品亚洲欧美一区| 国产欧美日本一区二区三区| 成人爽a毛片一区二区免费| 亚洲欧美综合网| 欧洲一区二区三区在线| 三级亚洲高清视频| 久久综合999| 成人国产精品免费| 一区二区三区四区不卡视频| 在线一区二区三区四区| 日韩精品一二三| 精品国产乱码久久久久久图片 | 欧美aaaaa成人免费观看视频| 日韩一级免费一区| 国产精品一级片| 亚洲摸摸操操av| 91精品久久久久久久91蜜桃 | 久久综合久久99| 成人av资源在线| 亚洲成人av免费| 久久久精品黄色| 色哟哟国产精品| 奇米影视在线99精品| 久久免费的精品国产v∧| 99久久久免费精品国产一区二区| 亚洲电影视频在线| 国产亚洲精久久久久久| 欧美亚洲国产一卡| 国产一区二区免费在线| 一区二区三区在线视频免费| 欧美大片在线观看| 色偷偷一区二区三区| 美女一区二区久久| 亚洲男同1069视频| 久久久亚洲精华液精华液精华液| 色八戒一区二区三区| 久久精品久久精品| 亚洲一区视频在线| 中文字幕一区免费在线观看| 日韩一区二区三区av| 91女神在线视频| 国产毛片精品国产一区二区三区| 一卡二卡三卡日韩欧美| 国产亚洲自拍一区| 日韩欧美国产综合在线一区二区三区| eeuss鲁片一区二区三区| 麻豆精品一区二区| 亚洲在线成人精品| 中文字幕一区三区| 国产欧美一区二区精品秋霞影院| 欧美日韩一级二级| 色偷偷久久人人79超碰人人澡 | 美女视频黄a大片欧美| 亚洲精品日日夜夜| 国产精品久久久久永久免费观看| 日韩亚洲电影在线| 国产亚洲综合在线| 久久久欧美精品sm网站| 欧美日韩一二三区| 欧美日韩在线亚洲一区蜜芽| 91麻豆视频网站| 不卡在线观看av| 高清av一区二区| 韩日精品视频一区| 久久超碰97中文字幕| 日本美女一区二区三区| 亚洲国产日韩av| 亚洲一区二区成人在线观看| 亚洲三级在线免费| 亚洲欧美另类久久久精品2019| 国产精品全国免费观看高清| 精品国产乱码久久久久久牛牛| 欧美一卡在线观看| 精品乱码亚洲一区二区不卡| 日韩免费高清电影| xfplay精品久久| 久久色在线视频| 久久久一区二区三区| 久久亚洲精品小早川怜子| 精品久久久久99| 久久久久久久精| 国产精品理论片在线观看| 国产精品欧美精品| 亚洲欧美日韩国产综合在线| 亚洲少妇最新在线视频| 一区二区三区免费| 天天综合色天天综合色h| 日韩黄色免费电影| 精品一区二区在线观看| 国产高清在线精品| 不卡电影免费在线播放一区| 91国模大尺度私拍在线视频| 欧美日韩国产综合久久| 日韩三级伦理片妻子的秘密按摩| 精品剧情v国产在线观看在线| 国产日本一区二区| 亚洲色图.com| 日本欧洲一区二区| 国产尤物一区二区在线| 成人午夜免费视频| 欧美色网一区二区| 精品福利视频一区二区三区| 国产精品免费网站在线观看| 亚洲精品老司机| 久久成人久久爱| 91在线视频免费91| 717成人午夜免费福利电影| 日韩女优毛片在线| 国产精品美女久久久久aⅴ国产馆| 亚洲色图一区二区三区| 日本美女一区二区三区视频| 成人黄色777网| 欧美伦理视频网站| 国产精品视频看| 日韩经典中文字幕一区| 高清不卡一区二区| 91精品国产综合久久精品| 久久久91精品国产一区二区三区| 亚洲精品大片www| 国产精品一色哟哟哟| 欧美三片在线视频观看| 欧美高清在线视频| 奇米四色…亚洲| 91免费视频大全| 久久综合色婷婷| 午夜伊人狠狠久久| kk眼镜猥琐国模调教系列一区二区| 欧美久久一区二区| 亚洲视频网在线直播| 激情综合色播激情啊| 欧美最新大片在线看| 亚洲国产电影在线观看| 久久国产尿小便嘘嘘尿| 欧美主播一区二区三区| 国产精品久久久一本精品| 国内精品视频一区二区三区八戒| 欧美视频中文字幕| 亚洲精品中文在线影院| 成人性生交大片免费看中文| 精品国产一区二区亚洲人成毛片 | 狠狠色丁香婷婷综合久久片| 欧美日韩国产综合草草| 亚洲丝袜制服诱惑| 99久久精品一区| 国产精品久线在线观看| 韩国视频一区二区| 欧美xxxxx牲另类人与| 日本麻豆一区二区三区视频| 欧美三级日韩三级| 亚洲高清不卡在线| 欧美在线你懂的| 亚洲一区二区欧美日韩| 91福利在线导航| 亚洲色欲色欲www| 91在线观看下载| 最新热久久免费视频| www.日韩av| 亚洲男同性恋视频| 欧美性生活大片视频| 亚洲专区一二三| 欧美日本国产一区| 水蜜桃久久夜色精品一区的特点|