// U_Udstyr.h // 21. maj 2001 // Datamatiker, Programmering af store systemer // Mikkel Munksgaard og Niels Grove-Rasmussen //--------------------------------------------------------------------------- #ifndef U_UdstyrH #define U_UdstyrH //--------------------------------------------------------------------------- #include #include #include #include #include #include #include #include //--------------------------------------------------------------------------- class TForm_Udstyr : public TForm { __published: // IDE-managed Components TButton *Butn_Luk; TDBGrid *Grid_Udstyr; TTable *Tabl_Udstyr; TDataSource *Sour_Udstyr; void __fastcall Butn_LukClick(TObject *Sender); private: // User declarations // added by Munksgaard & Grove-Rasmussen void TForm_Udstyr::Fejl(const String& metode, const String& meddelelse); public: // User declarations __fastcall TForm_Udstyr(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm_Udstyr *Form_Udstyr; //--------------------------------------------------------------------------- #endif