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

📄 fs_iconst.pas

📁 报表源码 FastReport 3 is new generation of the report generators components. It consists of report engin
💻 PAS
字号:

{******************************************}
{                                          }
{             FastScript v1.8              }
{                Resources                 }
{                                          }
{  (c) 2003-2005 by Alexander Tzyganenko,  }
{             Fast Reports Inc             }
{                                          }
{******************************************}

unit fs_iconst;

interface

{$i fs.inc}

var
  SLangNotFound: String;
  SInvalidLanguage: String;
  SIdRedeclared: String;
  SUnknownType: String;
  SIncompatibleTypes: String;
  SIdUndeclared: String;
  SClassRequired: String;
  SIndexRequired: String;
  SStringError: String;
  SClassError: String;
  SArrayRequired: String;
  SVarRequired: String;
  SNotEnoughParams: String;
  STooManyParams: String;
  SLeftCantAssigned: String;
  SForError: String;
  SEventError: String;


implementation

initialization
  SLangNotFound := 'Language ''%s'' not found';
  SInvalidLanguage := 'Invalid language definition';
  SIdRedeclared := 'Identifier redeclared: ';
  SUnknownType := 'Unknown type: ';
  SIncompatibleTypes := 'Incompatible types';
  SIdUndeclared := 'Undeclared identifier: ';
  SClassRequired := 'Class type required';
  SIndexRequired := 'Index required';
  SStringError := 'Strings doesn''t have properties or methods';
  SClassError := 'Class %s does not have a default property';
  SArrayRequired := 'Array type required';
  SVarRequired := 'Variable required';
  SNotEnoughParams := 'Not enough actual parameters';
  STooManyParams := 'Too many actual parameters';
  SLeftCantAssigned := 'Left side cannot be assigned to';
  SForError := 'For loop variable must be numeric variable';
  SEventError := 'Event handler must be a procedure';

end.

⌨️ 快捷键说明

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