home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Source / Internet / WBMCONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-08-11  |  2.2 KB  |  62 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Visual Component Library         }
  5. {                                                       }
  6. {       Copyright (c) 1999 Inprise Corporation       }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit WbmConst;
  11.  
  12. interface
  13.  
  14. resourcestring
  15.   sDataSetFieldBlank = 'Data set field is blank';
  16.   sDataSetFieldNotFound = 'Data set field not found: %s';
  17.   sNotDataSetField = 'Field is not a dataset field: %s';
  18.   ScriptTableName = '%s_Table';
  19.   sNoXMLBroker = '%s: missing XMLBroker';
  20.   sFieldNotFound = '%0:s: Field "%1:s" not found';
  21.   sXMLBrokerNotDefined = '%s.XMLBroker = nil';
  22.   sSubmitQuery = 'Submit';
  23.   sResetQuery = 'Reset';
  24.   sApplyUpdates = 'Apply Updates';
  25.   sFieldNameBlank = '%s.FieldName = ''''';
  26.   sXMLComponentNotDefined = '%s.XMLComponent = nil';
  27.   ScriptNamesVar = '%s_Names';
  28.   ScriptIDsVar = '%s_IDs';
  29.   ScriptXMLDisplayName = '%s_Disp';
  30.   sInvalidParent = 'Invalid parent';
  31.   sDuplicateStatusField = 'Field %s ignored, only one status field allowed';
  32.   sFirstButton = '|<';
  33.   sLastButton = '>|';
  34.   sPriorButton = '<';
  35.   sNextButton = '>';
  36.   sPriorPageButton = '<<';
  37.   sNextPageButton = '>>';
  38.   sDeleteButton = ' - ';
  39.   sInsertButton = ' + ';
  40.   sUndoButton = 'Undo';
  41.   sPostButton = 'Post';
  42.   sWarningsBody = '<TABLE BORDER=1 CELLPADDING=4>'#13#10 +
  43.                 '<TR><TD><P ALIGN=CENTER>Design-time Warnings<P>'#13#10 +
  44.                 '%s'#13#10 +
  45.                 '</TD></TD>'#13#10 +
  46.                 '</TABLE>'#13#10;
  47.   ScriptDocumentVarName = '%s_Doc';
  48.   ScriptXMLVarName = '%s_XML';
  49.   sInvalidWebComponentsRegistration =  'Invalid Web component registration';
  50.   sInvalidWebComponentsEnumeration =  'Invalid Web component enumeration';
  51.   sInvalidWebComponentsCreation =  'Invalid Web component creation';
  52.   ScriptRowSetVarName = '%s_RS';
  53.   sApplyUpdatesError = 'ApplyUpdates error.  Error count: %d.';
  54.   sDeltaNotFound = 'Missing Delta Packet';
  55.   sXMLBrokerNotConnected = 'XMLBroker: %s is not connected';
  56.   sDataSetNotActive = 'DataSet: %s is not active';
  57.  
  58. implementation
  59.  
  60. end.
  61.  
  62.