| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 
 | //Form1.h
#pragma once
 
namespace marre5 {
 
	using namespace System;
	using namespace System::ComponentModel;
	using namespace System::Collections;
	using namespace System::Windows::Forms;
	using namespace System::Data;
	using namespace System::Drawing;
	using namespace System::IO;
	using namespace System::Text;
	using namespace System::Net::NetworkInformation;
	using namespace System::Diagnostics;
 
	/// <summary>
	/// Description résumée de Form1
	///
	/// AVERTISSEMENT*: si vous modifiez le nom de cette classe, vous devrez modifier la
	///          propriété 'Nom du fichier de ressources' de l'outil de compilation de ressource managée
	///          pour tous les fichiers .resx dont dépend cette classe. Dans le cas contraire,
	///          les concepteurs ne pourront pas interagir correctement avec les ressources
	///          localisées associées à ce formulaire.
	/// </summary>
	public ref class Form1 : public System::Windows::Forms::Form
	{
	public:
		Form1(void)
		{
			InitializeComponent();
			//
			//TODO*: ajoutez ici le code du constructeur
			//
		}
 
	protected:
		/// <summary>
		/// Nettoyage des ressources utilisées.
		/// </summary>
		~Form1()
		{
			if (components)
			{
				delete components;
			}
		}
	private: System::Windows::Forms::Button^  button1;
	private: System::Windows::Forms::Button^  button2;
	private: System::Windows::Forms::TextBox^  textBox1;
	private: System::Windows::Forms::ComboBox^  comboBox1;
	private: System::Windows::Forms::ComboBox^  comboBox2;
	protected: 
 
	private:
		/// <summary>
		/// Variable nécessaire au concepteur.
		/// </summary>
		System::ComponentModel::Container ^components;
 
#pragma region Windows Form Designer generated code
		/// <summary>
		/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
		/// le contenu de cette méthode avec l'éditeur de code.
		/// </summary>
		void InitializeComponent(void)
		{
			this->button1 = (gcnew System::Windows::Forms::Button());
			this->button2 = (gcnew System::Windows::Forms::Button());
			this->textBox1 = (gcnew System::Windows::Forms::TextBox());
			this->comboBox1 = (gcnew System::Windows::Forms::ComboBox());
			this->comboBox2 = (gcnew System::Windows::Forms::ComboBox());
			this->SuspendLayout();
			// 
			// button1
			// 
			this->button1->Location = System::Drawing::Point(467, 216);
			this->button1->Name = L"button1";
			this->button1->Size = System::Drawing::Size(75, 23);
			this->button1->TabIndex = 0;
			this->button1->Text = L"exit";
			this->button1->UseVisualStyleBackColor = true;
			this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click);
			// 
			// button2
			// 
			this->button2->Location = System::Drawing::Point(49, 215);
			this->button2->Name = L"button2";
			this->button2->Size = System::Drawing::Size(75, 23);
			this->button2->TabIndex = 1;
			this->button2->Text = L"ping";
			this->button2->UseVisualStyleBackColor = true;
			this->button2->Click += gcnew System::EventHandler(this, &Form1::button2_Click);
			// 
			// textBox1
			// 
			this->textBox1->Location = System::Drawing::Point(26, 164);
			this->textBox1->Name = L"textBox1";
			this->textBox1->Size = System::Drawing::Size(183, 20);
			this->textBox1->TabIndex = 2;
			this->textBox1->TextChanged += gcnew System::EventHandler(this, &Form1::textBox1_TextChanged);
			// 
			// comboBox1
			// 
			this->comboBox1->FormattingEnabled = true;
			this->comboBox1->Location = System::Drawing::Point(26, 27);
			this->comboBox1->Name = L"comboBox1";
			this->comboBox1->Size = System::Drawing::Size(183, 21);
			this->comboBox1->TabIndex = 1;
			this->comboBox1->Text = L"Choose a project";
			this->comboBox1->SelectedIndexChanged += gcnew System::EventHandler(this, &Form1::comboBox1_SelectedIndexChanged);
			// 
			// comboBox2
			// 
			this->comboBox2->FormattingEnabled = true;
			this->comboBox2->Location = System::Drawing::Point(26, 93);
			this->comboBox2->Name = L"comboBox2";
			this->comboBox2->Size = System::Drawing::Size(183, 21);
			this->comboBox2->TabIndex = 4;
			this->comboBox2->Text = L"Choose a platform";
			// 
			// Form1
			// 
			this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
			this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
			this->ClientSize = System::Drawing::Size(576, 266);
			this->ControlBox = false;
			this->Controls->Add(this->comboBox2);
			this->Controls->Add(this->comboBox1);
			this->Controls->Add(this->textBox1);
			this->Controls->Add(this->button2);
			this->Controls->Add(this->button1);
			this->Name = L"Form1";
			this->Text = L"Form1";
			this->Load += gcnew System::EventHandler(this, &Form1::comboBox1_Load);
			this->ResumeLayout(false);
			this->PerformLayout();
 
		}
#pragma endregion
 
		/************* zone  activité *****************/
 
		//exit
	private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e)
			 {
				 Form1::Close();
			 }
			 //ping
	private: System::Void button2_Click(System::Object^  sender, System::EventArgs^  e)
			 {
				PrintHead_pingres();
				String^ adresse = this->textBox1->Text->ToString();
				int timeout = 12000;
 
				//PingUnit(adresse);
				for (int i=0; i<4;i++)
				{					
					Ping^ monPing = gcnew Ping();
					PingReply^ reply = monPing->Send(adresse,timeout);
					StreamWriter^ sw = File::AppendText("ping_res.txt");
					sw->Write(adresse);
					sw->Write(" ");
					sw->Write(reply->RoundtripTime);
					sw->WriteLine(reply->Status);
					sw->Close();
				}
 
 
			 }
			 // single ip
	private: System::Void textBox1_TextChanged(System::Object^  sender, System::EventArgs^  e)
			 {
 
			 }
 
			 // project
	private: System::Void comboBox1_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e)
			 {
				 String^ proj = this->comboBox1->SelectedItem->ToString();
				 MesFonctionsUtiles::FillComboBox(comboBox2, proj);
 
				 //Combobox2_Fill(proj);
			 }
 
			 //plt
	private: System::Void comboBox2_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e)
			 {	
 
			 }
 // méthodes déportées pré mise en classe/méthode
 
			 /**************************************/
 
	 private: System::Void comboBox1_Load(System::Object^  sender, System::EventArgs^  e)
			  {
				this->comboBox2->Items->Clear();
				String^ line;
 				FileStream^ lect = gcnew FileStream("Projects.txt", FileMode::Open);
				StreamReader^ sr = gcnew StreamReader(lect);
				while(line = sr->ReadLine())
				 {
					 this->comboBox1->Items->Add(line);
				 }	
				sr->Close();
			  }
 
				/**********************************************/
 
/******************************************/
 
	private: System::Void PrintHead_pingres()
			 {
				String^ date = DateTime::Now.ToString("yyyy/MM/dd");
				String^ heure = DateTime::Now.ToString("HH:mm:ss");
				StreamWriter^ sw1 = File::AppendText("ping_res.txt");
				sw1->WriteLine();
				sw1->WriteLine(date);
				sw1->WriteLine(heure);
				sw1->WriteLine("*******************************************");
				sw1->Close();
			 }
 
			 /************************************************/
 
	/* private: Ping PingUnit(String^ adresse)
			  {
				int timeout = 12000;
				for (int i=0; i<4;i++)
				{					
					Ping^ monPing = gcnew Ping();
					PingReply^ reply = monPing->Send(adresse,timeout);
					StreamWriter^ sw = File::AppendText("ping_res.txt");
					sw->Write(adresse);
					sw->Write(" ");
					sw->Write(reply->RoundtripTime);
					sw->WriteLine(reply->Status);
					sw->Close();
				}
				return();
			  }*/
 
};
} |