//--------------------------------------------------------------------------- #ifndef HyperlinkH #define HyperlinkH //--------------------------------------------------------------------------- #include #include #include #include #pragma link "LEADAnn" //--------------------------------------------------------------------------- class THyperlinkForm : public TForm { __published: // IDE-managed Components TGroupBox *GroupBox1; TRadioButton *NoneRadioButton; TRadioButton *EventRadioButton; TRadioButton *RunRadioButton; TRadioButton *WebPageRadioButton; TEdit *Edit1; TEdit *Edit2; TButton *Button1; TButton *Button2; void __fastcall Button2Click(TObject *Sender); void __fastcall NoneRadioButtonClick(TObject *Sender); void __fastcall EventRadioButtonClick(TObject *Sender); void __fastcall RunRadioButtonClick(TObject *Sender); void __fastcall WebPageRadioButtonClick(TObject *Sender); private: // User declarations public: // User declarations int nResult; int nType; AnsiString szLink; void InitTheForm(int nType, L_HANDLE hObject ); __fastcall THyperlinkForm(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE THyperlinkForm *HyperlinkForm; //--------------------------------------------------------------------------- #endif