⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 designconst.pas

📁 漏洞扫描系列中HB Network Scanner 测试用练习代码
💻 PAS
字号:
{ ********************************************************************** }
{                                                                        }
{ Delphi Open-Tools API                                                  }
{                                                                        }
{ Copyright (C) 2000, 2001 Borland Software Corporation                  }
{                                                                        }
{ ********************************************************************** }
unit DesignConst;

interface

resourcestring
  srNone = '(None)';
  srLine = 'line';
  srLines = 'lines';

  SInvalidFormat = 'Invalid graphic format';
  
  SUnableToFindComponent = 'Unable to locate form/component, ''%s''';
  SCantFindProperty = 'Unable to locate property ''%s'' on component ''%s''';
  SStringsPropertyInvalid = 'Property ''%s'' has not been initialized on component ''%s''';

  SLoadPictureTitle = 'Load Picture';
  SSavePictureTitle = 'Save Picture As';
  
  SAboutVerb = 'About...';
  SNoPropertyPageAvailable = 'No property pages are available for this control';
  SNoAboutBoxAvailable = 'An About Box is not available for this control';
  SNull = '(Null)';
  SUnassigned = '(Unassigned)';
  SUnknown = '(Unknown)';
  SString = 'String';

  SUnknownType = 'Unknown Type';

  SCannotCreateName = 'Cannot create a method for an unnamed component';

  SColEditCaption = 'Editing %s%s%s';

  SCantDeleteAncestor = 'Selection contains a component introduced in an ancestor form which cannot be deleted';
  SCantAddToFrame = 'New components cannot be added to frame instances.';

{$IFDEF LINUX}
  SAllFiles = 'all files (*)';
{$ENDIF}
{$IFDEF MSWINDOWS}
  SAllFiles = 'all files (*.*)';
{$ENDIF}

const
  SIniEditorsName = 'Property Editors';

implementation

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -