home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Midas / InternetExpress / InetXCustom / inetxcustom.dpk < prev    next >
Text File  |  1999-08-11  |  945b  |  46 lines

  1. package InetXCustom;
  2.  
  3. {$R *.RES}
  4. {$ALIGN ON}
  5. {$ASSERTIONS ON}
  6. {$BOOLEVAL OFF}
  7. {$DEBUGINFO ON}
  8. {$EXTENDEDSYNTAX ON}
  9. {$IMPORTEDDATA ON}
  10. {$IOCHECKS ON}
  11. {$LOCALSYMBOLS ON}
  12. {$LONGSTRINGS ON}
  13. {$OPENSTRINGS ON}
  14. {$OPTIMIZATION ON}
  15. {$OVERFLOWCHECKS OFF}
  16. {$RANGECHECKS OFF}
  17. {$REFERENCEINFO ON}
  18. {$SAFEDIVIDE OFF}
  19. {$STACKFRAMES OFF}
  20. {$TYPEDADDRESS OFF}
  21. {$VARSTRINGCHECKS ON}
  22. {$WRITEABLECONST ON}
  23. {$MINENUMSIZE 1}
  24. {$IMAGEBASE $400000}
  25. {$DESCRIPTION 'InternetExpress Sample Components (runtime package)'}
  26. {$RUNONLY}
  27. {$IMPLICITBUILD OFF}
  28.  
  29. requires
  30.   vcl50,
  31.   webmid50;
  32.  
  33. contains
  34.   ShowXML in 'ShowXML.pas',
  35.   QueryComps in 'QueryComps.pas',
  36.   WebCombo in 'WebCombo.pas',
  37.   FieldAttr in 'FieldAttr.pas',
  38.   ReconcileProd in 'ReconcileProd.pas',
  39.   LinkFlds in 'LinkFlds.pas',
  40.   SortFlds in 'SortFlds.pas',
  41.   imgbuttons in 'imgbuttons.pas',
  42.   RowSetStatus in 'RowSetStatus.pas',
  43.   CustLayout in 'CustLayout.pas';
  44.  
  45. end.
  46.