#pragma once #include "doInstall.h" namespace SRInstallMGR { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing; /// /// Summary for Form1 /// /// WARNING: If you change the name of this class, you will need to change the /// 'Resource File Name' property for the managed resource compiler tool /// associated with all .resx files this class depends on. Otherwise, /// the designers will not be able to interact properly with localized /// resources associated with this form. /// public ref class Form1 : public System::Windows::Forms::Form { public: Form1(void) { InitializeComponent(); // //TODO: Add the constructor code here // } protected: /// /// Clean up any resources being used. /// ~Form1() { if (components) { delete components; } } private: System::Windows::Forms::Button^ button1; protected: private: System::Windows::Forms::Button^ button2; private: System::Windows::Forms::TextBox^ textBox1; private: /// /// Required designer variable. /// System::ComponentModel::Container ^components; #pragma region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// void InitializeComponent(void) { System::ComponentModel::ComponentResourceManager^ resources = (gcnew System::ComponentModel::ComponentResourceManager(Form1::typeid)); this->button1 = (gcnew System::Windows::Forms::Button()); this->button2 = (gcnew System::Windows::Forms::Button()); this->textBox1 = (gcnew System::Windows::Forms::TextBox()); this->SuspendLayout(); // // button1 // this->button1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 12, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, static_cast(0))); this->button1->Location = System::Drawing::Point(34, 229); this->button1->Name = L"button1"; this->button1->Size = System::Drawing::Size(206, 98); this->button1->TabIndex = 0; this->button1->Text = L"Start Cataloguing"; this->button1->UseVisualStyleBackColor = true; this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click); this->button1->MouseEnter += gcnew System::EventHandler(this, &Form1::button1_MouseEnter); // // button2 // this->button2->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 10, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, static_cast(0))); this->button2->Location = System::Drawing::Point(305, 231); this->button2->Name = L"button2"; this->button2->Size = System::Drawing::Size(83, 96); this->button2->TabIndex = 2; this->button2->Text = L"CANCEL"; this->button2->UseVisualStyleBackColor = true; this->button2->Click += gcnew System::EventHandler(this, &Form1::button2_Click); // // textBox1 // this->textBox1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 11, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast(0))); this->textBox1->Location = System::Drawing::Point(34, 12); this->textBox1->Multiline = true; this->textBox1->Name = L"textBox1"; this->textBox1->Size = System::Drawing::Size(354, 211); this->textBox1->TabIndex = 3; this->textBox1->Text = resources->GetString(L"textBox1.Text"); this->textBox1->TextAlign = System::Windows::Forms::HorizontalAlignment::Center; // // Form1 // this->AutoScaleDimensions = System::Drawing::SizeF(6, 13); this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font; this->ClientSize = System::Drawing::Size(412, 332); this->Controls->Add(this->textBox1); this->Controls->Add(this->button2); this->Controls->Add(this->button1); this->Name = L"Form1"; this->Text = L"SwordReader module installer"; this->ResumeLayout(false); this->PerformLayout(); } #pragma endregion private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { textBox1->Clear(); textBox1->Text = "*WORKING*"; const char* OutStr = doInstall(); Application::Exit(); } private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) { Application::Exit(); } private: System::Void textBox1_MouseEnter(System::Object^ sender, System::EventArgs^ e) { // textBox1->Clear(); } private: System::Void button1_Enter(System::Object^ sender, System::EventArgs^ e) { } private: System::Void button1_MouseEnter(System::Object^ sender, System::EventArgs^ e) { textBox1->Clear(); textBox1->Text = "Click button and wait for Install Manager screen. We first need to catalogue your existing modules. This may take a few seconds ..... please wait!"; } }; }