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

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

?? wwintl.pas

?? 一套DELPHI病歷管理源碼
?? PAS
?? 第 1 頁 / 共 5 頁
字號:
    property MatchAnyLabel: string read FMatchAnyLabel write FMatchAnyLabel;
    property FieldsLabel: string read FFieldsLabel write FFieldsLabel;
    property BtnFirst: string read FButtonFirst write FButtonFirst;
    property BtnNext: string read FButtonNext write FButtonNext;
    property BtnCancel: string read FButtonCancel write FButtonCancel;
    property BtnClose: string read FButtonClose write FButtonClose;

    property FieldValueHint: string read FFieldValueHint write FFieldValueHint;
    property CaseSensitiveHint: string read FCaseSensitiveHint write FCaseSensitiveHint;
    property MatchExactHint: string read FMatchExactHint write FMatchExactHint;
    property MatchStartHint: string read FMatchStartHint write FMatchStartHint;
    property MatchAnyHint: string read FMatchAnyHint write FMatchAnyHint;
    property BtnFirstHint: string read FButtonFirstHint write FButtonFirstHint;
    property BtnNextHint: string read FButtonNextHint write FButtonNextHint;

    property FieldNameHint: string read FFieldNameHint write FFieldNameHint;
  end;

  TwwDBNavigatorIntlHints = class(TPersistent)
  private
    FFirstHint: string;
    FPriorHint: string;
    FNextHint: string;
    FLastHint: string;
    FInsertHint: string;
    FDeleteHint: string;
    FEditHint: string;
    FPostHint: string;
    FCancelHint: string;
    FRefreshHint: string;
    FPriorPageHint: string;
    FNextPageHint: string;
    FSaveBookmarkHint: string;
    FRestoreBookmarkHint: string;
    FRecordViewDialogHint: string;
    FLocateDialogHint: string;
    FFilterDialogHint: string;
    FSearchDialogHint: string;
  public
    constructor Create;
  published
    property FirstHint: string read FFirstHint write FFirstHint;
    property PriorHint: string read FPriorHint write FPriorHint;
    property NextHint: string read FNextHint write FNextHint;
    property LastHint: string read FLastHint write FLastHint;
    property InsertHint: string read FInsertHint write FInsertHint;
    property DeleteHint: string read FDeleteHint write FDeleteHint;
    property EditHint: string read FEditHint write FEditHint;
    property PostHint: string read FPostHint write FPostHint;
    property CancelHint: string read FCancelHint write FCancelHint;
    property RefreshHint: string read FRefreshHint write FRefreshHint;
    property PriorPageHint: string read FPriorPageHint write FPriorPageHint;
    property NextPageHint: string read FNextPageHint write FNextPageHint;
    property SaveBookmarkHint: string read FSaveBookmarkHint write FSaveBookmarkHint;
    property RestoreBookmarkHint: string read FRestoreBookmarkHint write FRestoreBookmarkHint;
    property RecordViewDialogHint: string read FRecordViewDialogHint write FRecordViewDialogHint;
    property LocateDialogHint: string read FLocateDialogHint write FLocateDialogHint;
    property FilterDialogHint: string read FFilterDialogHint write FFilterDialogHint;
    property SearchDialogHint: string read FSearchDialogHint write FSearchDialogHint;
  end;

  TwwADOIntl = class(TPersistent)
  private
    FUseLocateWhenFindingValue: boolean;
  published
    property UseLocateWhenFindingValue: boolean read
             FUseLocateWhenFindingValue write FUseLocateWhenFindingValue default True;
  end;

  TwwDBNavigatorIntl = class(TPersistent)
  private
    FConfirmDeleteMessage: string;
    FHints: TwwDBNavigatorIntlHints;
  public
    constructor Create;
    destructor Destroy; override;
  published
    property ConfirmDeleteMessage: string read FConfirmDeleteMessage write FConfirmDeleteMessage;
    property Hints: TwwDBNavigatorIntlHints read FHints write FHints;
  end;

  TwwCheckBoxInGridStyle = (cbStyleAuto, cbStyleCheckmark, cbStyleXmark,
     cbStyleCheckmarkFlat);
  TwwGridPaintStyle = (gpsBitmapCanvas, gpsDynamicDeviceContext);

  TwwIntl = class(TComponent)
  private
    FADO: TwwADOIntl;
    FNavigator: TwwDBNavigatorIntl;
    FSearchDialog: TwwSearchDialogIntl;
    FLocateDialog: TwwLocateDialogIntl;
    FMonthCalendar: TwwMonthCalendarIntl;
    FOKCancelBitmapped: boolean;
    FDialogFontStyle: TFontStyles;
    FBtnOKCaption: string;
    FBtnCancelCaption: string;
    FConnected: Boolean;
    FUserMessages: TwwUserMessagesIntl;
    FFilterDialog: TwwFilterDialogIntl;
    FRichEdit: TwwDBRichEditIntl;
    FIPVersion: string;
    FIniFileName: string;
    FRegistrationNo: string;
    FFastSQLCancelRange: boolean;
    FCheckBoxInGridStyle: TwwCheckBoxInGridStyle;
    FGridPaintStyle : TwwGridPaintStyle;

    FUseLocateMethodForSearch: boolean;
//    FUseLocateMethodForFind: boolean;
    FDefaultEpochYear: Integer;
    FFilterMemoSize: integer;
    FOnValidationErrorUsingMask: TwwPictureValidationError;

    Procedure SetConnected(val: boolean);
    Procedure SetIPVersion(val: string);
    {$ifdef NEWIPSETUP}
    Procedure SetRegistrationNo(val: string);
    {$endif}

    Procedure SetCheckboxInGridStyle(val: TwwCheckboxInGridStyle);
    Procedure SetGridPaintStyle(val: TwwGridPaintStyle);

  protected
    Procedure Loaded; override;
    Procedure Connect;

  public
    constructor Create(AOwner: TComponent); override;
    destructor Destroy; override;
    procedure ValidationErrorUsingMask(Component: TComponent; Field: TField); virtual;
    property FastSQLCancelRange: boolean read FFastSQLCancelRange write FFastSQLCancelRange;

    {$ifndef wwDelphi3Up}
    property UseLocateMethodForSearch: boolean read FUseLocateMethodForSearch write FUseLocateMethodForSearch default True;
    {$ENDIF}
  published
     property ADO: TwwADOIntl read FADO write FADO;
     property Navigator: TwwDBNavigatorIntl read FNavigator write FNavigator;
     property SearchDialog: TwwSearchDialogIntl read FSearchDialog write FSearchDialog;
     property LocateDialog: TwwLocateDialogIntl read FLocateDialog write FLocateDialog;
     property MonthCalendar: TwwMonthCalendarIntl read FMonthCalendar write FMonthCalendar;
     property FilterDialog: TwwFilterDialogIntl read FFilterDialog write FFilterDialog;
     property RichEdit: TwwDBRichEditIntl read FRichEdit write FRichEdit;
     property UserMessages: TwwUserMessagesIntl read FUserMessages write FUserMessages;
     property OKCancelBitmapped: boolean read FOKCancelBitmapped write FOKCancelBitmapped;
     property BtnOKCaption: string read FBtnOKCaption write FBtnOKCaption;
     property BtnCancelCaption: string read FBtnCancelCaption write FBtnCancelCaption;
     property CheckBoxInGridStyle: TwwCheckBoxInGridStyle read FCheckBoxInGridStyle write SetCheckboxInGridStyle;
     property GridPaintStyle: TwwGridPaintStyle read FGridPaintStyle write SetGridPaintStyle default gpsDynamicDeviceContext;
     property VersionInfoPower: string read FIPVersion write SetIPVersion;
     property FilterMemoSize: integer read FFilterMemoSize write FFilterMemoSize;
     property IniFileName: string read FIniFileName write FIniFileName;
     {$ifdef wwDelphi3Up}
     property UseLocateMethodForSearch: boolean read FUseLocateMethodForSearch write FUseLocateMethodForSearch default True;
     {$ENDIF}
     property DialogFontStyle: TFontStyles read FDialogFontStyle write FDialogFontStyle;
     {$IFDEF WIN32}
     property DefaultEpochYear: integer read FDefaultEpochYear write FDefaultEpochYear default 1950;
     {$ENDIF}
     {$ifdef NEWIPSETUP}
     property RegistrationNo: string read FRegistrationNo write SetRegistrationNo;
     {$endif}
     property OnValidationErrorUsingMask: TwwPictureValidationError read FOnValidationErrorUsingMask write FOnValidationErrorUsingMask;
     property Connected: boolean read FConnected write SetConnected;
  end;

  Function wwCreateCommonButton(AOwner: TForm;
   ButtonKind: TBitBtnKind): TComponent;


procedure Register;


var wwInternational: TwwIntl;

implementation

uses StdCtrls;

constructor TwwIntl.Create(AOwner: TComponent);
{$ifdef NEWIPSETUP}
var ipReg: TRegIniFile;
{$endif}
begin
   inherited Create(AOwner);
   FIPVersion:= '4000.T.C';

   {$ifdef NEWIPSETUP}
   if csDesigning in ComponentState then begin
      ipreg := TRegIniFile.create('');
      FRegistrationNo:=
         ipreg.ReadString('\Software\Woll2Woll\InfoPower', 'Reg. No.', '');
      ipreg.free;
   end;
   {$endif}
   FFastSQLCancelRange:= True;
   FUseLocateMethodForSearch:= True;
   FDefaultEpochYear := 1950;
   FFilterMemoSize:= $10000; { 64k }

   FFilterDialog:= TwwFilterDialogIntl.create;
   with FFilterDialog do
   begin
      FBtnViewSummary := 'View Su&mmary';
      FBtnViewSummaryHint  := 'View summary of current search criteria';
      FBtnNewSearch  := '&New Search';
      FBtnNewSearchHint  := 'Start a new search';
      FFieldOrderLabel  := 'Field Order';
      FFieldOrderHint := 'Sort field list alphabetically or in their natural logical order';
      FAlphabeticLabel := 'Alpha&betic';
      FLogicalLabel := '&Logical';
      FAllFieldsLabel := '&All';
      FSearchedFieldsLabel := '&Searched';
      FStartingRangeLabel := '&Starting Range';
      FEndingRangeLabel := 'En&ding Range';
      FBtnClearMin := '&Clear';
      FBtnClearMax := 'Cl&ear';
      FBtnClearFilterValue := '&Clear';
      FStartingRangeHint := 'Enter starting range for field';
      FEndingRangeHint := 'Enter ending range for field';
      FBtnClearMinHint := 'Clear starting range for field';
      FBtnClearMaxHint := 'Clear ending range for field';
      FBtnClearFilterValueHint:= 'Clear the current field''s search value';
      FByValueLabel  := 'By &Value';
      FByRangeLabel  := 'By &Range';
      FFieldValueLabel  := 'Field &Value';
      FFieldValueHint:= 'Enter field''s search value';
      FSearchTypeLabel  := 'Search Type';
      FSearchTypeHint:= 'Specify how the Field Value should be compared';
      FMatchExactLabel  := '&Exact Match';
      FMatchStartLabel  := '&Partial Match at Beginning';
      FMatchAnyLabel  := 'Partial Match Any&where';
      FCaseSensitiveLabel  := 'Case Sensi&tive';
      FCaseSensitiveHint  := 'Searching is case-sensitive';
      FNonMatchingLabel := 'N&on-matching records';
      FNonMatchingHint := 'Show records that do not match the field value criteria';
      FSummaryFieldLabel:= 'Field';
      FSummarySearchLabel:= 'Search Type';
      FSummaryValueLabel := 'Value';
      {$ifdef wwdelphi4up}
      FSummaryCaption:= ''; { Use default }
      {$endif}
      FFieldsLabel:= '&Fields';
      FValueRangeTabHint := 'Search fields by value or by range';
      FAllSearchedTabHint := 'Show all fields or only currently searched fields';
      FViewSummaryNotText := 'NOT';
   end;

   FRichEdit := TwwDBRichEditIntl.create;
   with FRichEdit do
   begin
      FFontNameComboHint := 'Font | Changes the font of the selection';
      FFontSizeComboHint := 'Font Size | Changes the font size of the selection';

      FNewButtonHint := 'New | Creates a new document';
      FLoadButtonHint := 'Load | Load from file';
      FSaveAsButtonHint := 'Save As | Save to file';
      FPrintButtonHint := 'Print | Prints the active document';
      FFindButtonHint := 'Find | Finds the specified text';
      FCutButtonHint := 'Cut | Cuts the selection and puts it on the Clipboard';
      FCopyButtonHint := 'Copy | Copies the selection and puts it on the Clipboard';
      FUndoButtonHint := 'Undo | Reverses the last action';
      {$ifdef wwDelphi4Up}
      FRedoButtonHint := 'Redo | Reverses the last undo action';
      {$endif}
      FPasteButtonHint := 'Paste | Inserts Clipboard contents';
      FBoldButtonHint := 'Bold | Makes the selection bold (toggle)';
      FColorButtonHint := 'Color | Formats the selection with a color';
      FUnderlineButtonHint := 'Underline | Formats the selection with a continuous underline (toggle)';
      FItalicButtonHint := 'Italic | Makes the selection italic (toggle)';
      FLeftButtonHint := 'Align Left | Left-justifies paragraph (toggle)';
      FCenterButtonHint := 'Center | Center-justifies paragraph (toggle)';
      FRightButtonHint := 'Align Right | Right-justifies paragraph (toggle)';

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲视频一区二区在线| 欧美色精品天天在线观看视频| 99久久精品免费| 亚洲夂夂婷婷色拍ww47| 欧美午夜影院一区| 国产一区二区三区日韩| 久久久久国产精品麻豆ai换脸| 九色|91porny| 亚洲成人免费电影| 国产精品国产精品国产专区不蜜| av在线这里只有精品| 成人欧美一区二区三区小说| 一本到高清视频免费精品| 久久精品国产精品青草| 亚洲国产一区视频| 国产精品理伦片| 欧美日韩国产一级| 色综合天天做天天爱| 成人性生交大合| 亚洲成年人影院| 亚洲欧洲制服丝袜| 日韩精品专区在线影院观看| 欧美日本一区二区三区四区| 色婷婷综合久久久久中文| av中文字幕在线不卡| 成人黄色片在线观看| 国产a级毛片一区| 国产精品资源站在线| 狠狠色2019综合网| 亚洲人成在线播放网站岛国| 欧美国产日产图区| 久久久久久免费网| 精品视频在线免费看| 色婷婷久久一区二区三区麻豆| 奇米精品一区二区三区在线观看 | 日韩一区二区视频在线观看| 在线视频你懂得一区二区三区| 奇米影视7777精品一区二区| 午夜免费久久看| 日韩av一级电影| 日韩黄色一级片| 日韩av不卡在线观看| 免费视频最近日韩| 精品一区二区三区不卡| 卡一卡二国产精品| 九九久久精品视频 | 1024成人网色www| 国产精品麻豆网站| 亚洲视频你懂的| 一区二区免费视频| 亚洲午夜视频在线| 人人超碰91尤物精品国产| 美女性感视频久久| 国产精品中文字幕一区二区三区| 一区二区三区中文字幕电影| 亚洲gay无套男同| 中文字幕在线视频一区| 亚洲婷婷在线视频| 亚洲激情自拍偷拍| 五月天一区二区| 久久精品国产99| 婷婷开心久久网| 精品一区二区三区的国产在线播放| 亚洲一区日韩精品中文字幕| 天天爽夜夜爽夜夜爽精品视频| 亚洲视频1区2区| 亚洲国产美国国产综合一区二区| 一区二区中文字幕在线| 一区二区三区四区激情| 国产精品久久久久7777按摩| 精品国产欧美一区二区| 欧美精品vⅰdeose4hd| 2021国产精品久久精品| 亚洲欧美偷拍另类a∨色屁股| 久久青草欧美一区二区三区| 国产精品久久久久久久久晋中| 久久综合国产精品| 亚洲欧美日韩中文字幕一区二区三区 | 国产高清久久久久| 91蜜桃免费观看视频| 欧美日韩成人综合天天影院| 亚洲精品一区二区三区99| 综合在线观看色| 免费观看久久久4p| 99久久精品国产麻豆演员表| 欧美一区二区三区白人| 欧美乱妇一区二区三区不卡视频| 欧美三区免费完整视频在线观看| 91美女在线看| 欧美成人女星排行榜| 亚洲精品中文字幕在线观看| 亚洲伦理在线免费看| 激情另类小说区图片区视频区| 美腿丝袜一区二区三区| 99国产精品久| 国产清纯白嫩初高生在线观看91 | 欧美午夜精品久久久久久孕妇| 色偷偷久久人人79超碰人人澡| 91片黄在线观看| 日韩一区二区电影| 亚洲欧美一区二区三区极速播放 | 国产日韩精品一区二区三区 | 日本不卡高清视频| 久久国产精品99久久人人澡| 精品中文字幕一区二区小辣椒| 国产毛片一区二区| 欧美午夜精品久久久| 中文字幕一区二区在线观看| 久久97超碰国产精品超碰| 国产在线看一区| 国产电影精品久久禁18| 91亚洲国产成人精品一区二区三| 日本久久电影网| 国产精品丝袜在线| 韩国成人福利片在线播放| 99在线精品一区二区三区| 欧美不卡一区二区| 天天亚洲美女在线视频| 国产成人在线看| 欧美一区二区私人影院日本| 久久综合九色欧美综合狠狠| 日本欧美韩国一区三区| 欧美日韩成人激情| 夜夜精品视频一区二区| 91蝌蚪porny成人天涯| 中文字幕一区在线| heyzo一本久久综合| 中文字幕在线一区免费| 成人爱爱电影网址| 在线播放/欧美激情| 亚洲在线成人精品| 精品视频在线视频| 午夜精品久久久久久久蜜桃app| 国产一区二区美女| 2017欧美狠狠色| 国产精品一卡二卡在线观看| 久久嫩草精品久久久精品| 一区二区在线观看视频| 91美女在线看| 亚洲风情在线资源站| 欧美精品乱码久久久久久| 国产欧美日韩中文久久| 成人一级黄色片| 日韩理论片中文av| 欧美综合久久久| 偷窥国产亚洲免费视频| 日韩欧美亚洲国产另类| 韩国一区二区在线观看| 欧美日韩视频在线观看一区二区三区| 久久久久国产精品免费免费搜索| 一区二区三区不卡在线观看 | 7777精品久久久大香线蕉| 亚洲国产精品人人做人人爽| 欧美日韩在线播放| 美腿丝袜亚洲综合| 日本一区二区三区久久久久久久久不| 日韩国产在线一| 精品电影一区二区| 婷婷中文字幕一区三区| 精品国产伦一区二区三区观看方式 | 91天堂素人约啪| 亚洲高清免费视频| 26uuuu精品一区二区| 爽好多水快深点欧美视频| 日韩精品在线网站| 成人97人人超碰人人99| 亚洲一级二级三级在线免费观看| youjizz久久| 亚洲h动漫在线| 国产色产综合产在线视频| 日本福利一区二区| 韩国精品久久久| 伊人一区二区三区| 久久免费电影网| 欧美在线高清视频| 国产一区二区中文字幕| 一区二区三区四区不卡视频| 日韩欧美中文字幕一区| 裸体健美xxxx欧美裸体表演| 欧美高清视频一二三区| 亚洲国产三级在线| 国产日产欧美一区二区三区| 欧美日韩高清一区二区三区| 国产一区二区免费看| 亚洲18色成人| 国产精品初高中害羞小美女文| av电影在线不卡| 麻豆精品一区二区av白丝在线| 日韩三级在线观看| 91在线观看地址| 久久成人久久爱| 亚洲国产日产av| 国产精品天干天干在线综合| 日韩欧美一区在线观看| 色94色欧美sute亚洲线路二| 一区二区三区精品在线观看| 久久夜色精品国产噜噜av| 欧美欧美欧美欧美| jlzzjlzz亚洲日本少妇| 国产一区视频网站|