Advertisement
iceymods

error

Apr 5th, 2018
17,153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.22 KB | None | 0 0
  1. #pragma once
  2. namespace MelloA {
  3.  
  4. using namespace System;
  5. using namespace System::ComponentModel;
  6. using namespace System::Collections;
  7. using namespace MySql::Data::MySqlClient;
  8. using namespace System::Windows::Forms;
  9. using namespace System::Data;
  10. using namespace System::Drawing;
  11.  
  12. /// <summary>
  13. /// Summary for AcceptedApplications
  14. /// </summary>
  15. public ref class AcceptedApplications : public System::Windows::Forms::Form
  16. {
  17. public:
  18. AcceptedApplications(void)
  19. {
  20. InitializeComponent();
  21. //
  22. //TODO: Add the constructor code here
  23. //
  24. }
  25. //AcceptedApplications^ frm = gcnew AcceptedApplications;
  26. MySqlConnection^ conn = gcnew MySqlConnection("datasource=localhost;port=3306;username=root;password=");
  27. MySqlDataAdapter adapter;
  28. DataTable table;
  29.  
  30. protected:
  31. /// <summary>
  32. /// Clean up any resources being used.
  33. /// </summary>
  34. ~AcceptedApplications()
  35. {
  36. if (components)
  37. {
  38. delete components;
  39. }
  40. }
  41. private: DevExpress::LookAndFeel::DefaultLookAndFeel^ defaultLookAndFeel1;
  42. protected:
  43. private: Bunifu::Framework::UI::BunifuCustomDataGrid^ bunifuCustomDataGrid1;
  44. private: System::Windows::Forms::Label^ label8;
  45. private: System::Windows::Forms::Label^ label7;
  46. private: System::Windows::Forms::Label^ label6;
  47. private: System::Windows::Forms::Label^ label5;
  48. private: System::Windows::Forms::Label^ label4;
  49. private: System::Windows::Forms::Label^ label3;
  50. private: System::Windows::Forms::Label^ label2;
  51. private: System::Windows::Forms::Label^ label1;
  52. private: System::Windows::Forms::TextBox^ textBox8;
  53. private: System::Windows::Forms::TextBox^ textBox7;
  54. private: System::Windows::Forms::TextBox^ textBox6;
  55. private: System::Windows::Forms::TextBox^ textBox5;
  56. private: System::Windows::Forms::TextBox^ textBox4;
  57. private: System::Windows::Forms::TextBox^ textBox3;
  58. private: System::Windows::Forms::TextBox^ textBox2;
  59. private: System::Windows::Forms::TextBox^ textBox1;
  60. private: System::ComponentModel::IContainer^ components;
  61.  
  62. protected:
  63.  
  64.  
  65. private:
  66. /// <summary>
  67. /// Required designer variable.
  68. /// </summary>
  69.  
  70.  
  71. #pragma region Windows Form Designer generated code
  72. /// <summary>
  73. /// Required method for Designer support - do not modify
  74. /// the contents of this method with the code editor.
  75. /// </summary>
  76. void InitializeComponent(void)
  77. {
  78. this->components = (gcnew System::ComponentModel::Container());
  79. System::Windows::Forms::DataGridViewCellStyle^ dataGridViewCellStyle5 = (gcnew System::Windows::Forms::DataGridViewCellStyle());
  80. System::Windows::Forms::DataGridViewCellStyle^ dataGridViewCellStyle6 = (gcnew System::Windows::Forms::DataGridViewCellStyle());
  81. System::Windows::Forms::DataGridViewCellStyle^ dataGridViewCellStyle7 = (gcnew System::Windows::Forms::DataGridViewCellStyle());
  82. System::Windows::Forms::DataGridViewCellStyle^ dataGridViewCellStyle8 = (gcnew System::Windows::Forms::DataGridViewCellStyle());
  83. this->defaultLookAndFeel1 = (gcnew DevExpress::LookAndFeel::DefaultLookAndFeel(this->components));
  84. this->bunifuCustomDataGrid1 = (gcnew Bunifu::Framework::UI::BunifuCustomDataGrid());
  85. this->label8 = (gcnew System::Windows::Forms::Label());
  86. this->label7 = (gcnew System::Windows::Forms::Label());
  87. this->label6 = (gcnew System::Windows::Forms::Label());
  88. this->label5 = (gcnew System::Windows::Forms::Label());
  89. this->label4 = (gcnew System::Windows::Forms::Label());
  90. this->label3 = (gcnew System::Windows::Forms::Label());
  91. this->label2 = (gcnew System::Windows::Forms::Label());
  92. this->label1 = (gcnew System::Windows::Forms::Label());
  93. this->textBox8 = (gcnew System::Windows::Forms::TextBox());
  94. this->textBox7 = (gcnew System::Windows::Forms::TextBox());
  95. this->textBox6 = (gcnew System::Windows::Forms::TextBox());
  96. this->textBox5 = (gcnew System::Windows::Forms::TextBox());
  97. this->textBox4 = (gcnew System::Windows::Forms::TextBox());
  98. this->textBox3 = (gcnew System::Windows::Forms::TextBox());
  99. this->textBox2 = (gcnew System::Windows::Forms::TextBox());
  100. this->textBox1 = (gcnew System::Windows::Forms::TextBox());
  101. (cli::safe_cast<System::ComponentModel::ISupportInitialize^>(this->bunifuCustomDataGrid1))->BeginInit();
  102. this->SuspendLayout();
  103. //
  104. // defaultLookAndFeel1
  105. //
  106. this->defaultLookAndFeel1->LookAndFeel->SkinMaskColor2 = System::Drawing::Color::White;
  107. this->defaultLookAndFeel1->LookAndFeel->SkinName = L"Visual Studio 2013 Dark";
  108. //
  109. // bunifuCustomDataGrid1
  110. //
  111. dataGridViewCellStyle5->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  112. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  113. dataGridViewCellStyle5->ForeColor = System::Drawing::Color::White;
  114. dataGridViewCellStyle5->SelectionBackColor = System::Drawing::Color::Blue;
  115. dataGridViewCellStyle5->SelectionForeColor = System::Drawing::Color::White;
  116. this->bunifuCustomDataGrid1->AlternatingRowsDefaultCellStyle = dataGridViewCellStyle5;
  117. this->bunifuCustomDataGrid1->BackgroundColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)),
  118. static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)));
  119. this->bunifuCustomDataGrid1->BorderStyle = System::Windows::Forms::BorderStyle::None;
  120. this->bunifuCustomDataGrid1->ColumnHeadersBorderStyle = System::Windows::Forms::DataGridViewHeaderBorderStyle::None;
  121. dataGridViewCellStyle6->Alignment = System::Windows::Forms::DataGridViewContentAlignment::MiddleLeft;
  122. dataGridViewCellStyle6->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  123. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  124. dataGridViewCellStyle6->Font = (gcnew System::Drawing::Font(L"Tahoma", 8.25F));
  125. dataGridViewCellStyle6->ForeColor = System::Drawing::Color::White;
  126. dataGridViewCellStyle6->SelectionBackColor = System::Drawing::Color::Blue;
  127. dataGridViewCellStyle6->SelectionForeColor = System::Drawing::Color::White;
  128. dataGridViewCellStyle6->WrapMode = System::Windows::Forms::DataGridViewTriState::True;
  129. this->bunifuCustomDataGrid1->ColumnHeadersDefaultCellStyle = dataGridViewCellStyle6;
  130. this->bunifuCustomDataGrid1->ColumnHeadersHeightSizeMode = System::Windows::Forms::DataGridViewColumnHeadersHeightSizeMode::AutoSize;
  131. dataGridViewCellStyle7->Alignment = System::Windows::Forms::DataGridViewContentAlignment::MiddleLeft;
  132. dataGridViewCellStyle7->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  133. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  134. dataGridViewCellStyle7->Font = (gcnew System::Drawing::Font(L"Tahoma", 8.25F));
  135. dataGridViewCellStyle7->ForeColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(32)), static_cast<System::Int32>(static_cast<System::Byte>(31)),
  136. static_cast<System::Int32>(static_cast<System::Byte>(53)));
  137. dataGridViewCellStyle7->SelectionBackColor = System::Drawing::Color::Blue;
  138. dataGridViewCellStyle7->SelectionForeColor = System::Drawing::Color::White;
  139. dataGridViewCellStyle7->WrapMode = System::Windows::Forms::DataGridViewTriState::False;
  140. this->bunifuCustomDataGrid1->DefaultCellStyle = dataGridViewCellStyle7;
  141. this->bunifuCustomDataGrid1->DoubleBuffered = true;
  142. this->bunifuCustomDataGrid1->EnableHeadersVisualStyles = false;
  143. this->bunifuCustomDataGrid1->GridColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)),
  144. static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)));
  145. this->bunifuCustomDataGrid1->HeaderBgColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)),
  146. static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)));
  147. this->bunifuCustomDataGrid1->HeaderForeColor = System::Drawing::Color::White;
  148. this->bunifuCustomDataGrid1->Location = System::Drawing::Point(557, -2);
  149. this->bunifuCustomDataGrid1->Name = L"bunifuCustomDataGrid1";
  150. this->bunifuCustomDataGrid1->RowHeadersBorderStyle = System::Windows::Forms::DataGridViewHeaderBorderStyle::None;
  151. dataGridViewCellStyle8->Alignment = System::Windows::Forms::DataGridViewContentAlignment::MiddleLeft;
  152. dataGridViewCellStyle8->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  153. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  154. dataGridViewCellStyle8->Font = (gcnew System::Drawing::Font(L"Tahoma", 8.25F));
  155. dataGridViewCellStyle8->ForeColor = System::Drawing::Color::White;
  156. dataGridViewCellStyle8->SelectionBackColor = System::Drawing::Color::Blue;
  157. dataGridViewCellStyle8->SelectionForeColor = System::Drawing::Color::White;
  158. dataGridViewCellStyle8->WrapMode = System::Windows::Forms::DataGridViewTriState::True;
  159. this->bunifuCustomDataGrid1->RowHeadersDefaultCellStyle = dataGridViewCellStyle8;
  160. this->bunifuCustomDataGrid1->RowTemplate->DefaultCellStyle->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)),
  161. static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)));
  162. this->bunifuCustomDataGrid1->RowTemplate->DefaultCellStyle->ForeColor = System::Drawing::Color::White;
  163. this->bunifuCustomDataGrid1->RowTemplate->DefaultCellStyle->SelectionBackColor = System::Drawing::Color::Blue;
  164. this->bunifuCustomDataGrid1->RowTemplate->DefaultCellStyle->SelectionForeColor = System::Drawing::Color::White;
  165. this->bunifuCustomDataGrid1->Size = System::Drawing::Size(1181, 445);
  166. this->bunifuCustomDataGrid1->TabIndex = 55;
  167. //
  168. // label8
  169. //
  170. this->label8->AutoSize = true;
  171. this->label8->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  172. this->label8->Location = System::Drawing::Point(364, 198);
  173. this->label8->Name = L"label8";
  174. this->label8->Size = System::Drawing::Size(83, 19);
  175. this->label8->TabIndex = 54;
  176. this->label8->Text = L"Extra Stuff";
  177. //
  178. // label7
  179. //
  180. this->label7->AutoSize = true;
  181. this->label7->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  182. this->label7->Location = System::Drawing::Point(27, 198);
  183. this->label7->Name = L"label7";
  184. this->label7->Size = System::Drawing::Size(214, 19);
  185. this->label7->TabIndex = 53;
  186. this->label7->Text = L"Why Should We Accept You\?";
  187. //
  188. // label6
  189. //
  190. this->label6->AutoSize = true;
  191. this->label6->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  192. this->label6->Location = System::Drawing::Point(304, 57);
  193. this->label6->Name = L"label6";
  194. this->label6->Size = System::Drawing::Size(184, 19);
  195. this->label6->TabIndex = 52;
  196. this->label6->Text = L"Why Do You Want Staff\?";
  197. //
  198. // label5
  199. //
  200. this->label5->AutoSize = true;
  201. this->label5->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  202. this->label5->Location = System::Drawing::Point(65, 57);
  203. this->label5->Name = L"label5";
  204. this->label5->Size = System::Drawing::Size(122, 19);
  205. this->label5->TabIndex = 51;
  206. this->label5->Text = L"Staff Experience";
  207. //
  208. // label4
  209. //
  210. this->label4->AutoSize = true;
  211. this->label4->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  212. this->label4->Location = System::Drawing::Point(415, 5);
  213. this->label4->Name = L"label4";
  214. this->label4->Size = System::Drawing::Size(113, 19);
  215. this->label4->TabIndex = 50;
  216. this->label4->Text = L"Discord Name ";
  217. //
  218. // label3
  219. //
  220. this->label3->AutoSize = true;
  221. this->label3->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  222. this->label3->Location = System::Drawing::Point(288, 5);
  223. this->label3->Name = L"label3";
  224. this->label3->Size = System::Drawing::Size(80, 19);
  225. this->label3->TabIndex = 49;
  226. this->label3->Text = L"TimeZone";
  227. //
  228. // label2
  229. //
  230. this->label2->AutoSize = true;
  231. this->label2->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  232. this->label2->Location = System::Drawing::Point(175, 5);
  233. this->label2->Name = L"label2";
  234. this->label2->Size = System::Drawing::Size(37, 19);
  235. this->label2->TabIndex = 48;
  236. this->label2->Text = L"Age";
  237. //
  238. // label1
  239. //
  240. this->label1->AutoSize = true;
  241. this->label1->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  242. this->label1->Location = System::Drawing::Point(13, 5);
  243. this->label1->Name = L"label1";
  244. this->label1->Size = System::Drawing::Size(122, 19);
  245. this->label1->TabIndex = 47;
  246. this->label1->Text = L"IGN + NameMC";
  247. //
  248. // textBox8
  249. //
  250. this->textBox8->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  251. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  252. this->textBox8->BorderStyle = System::Windows::Forms::BorderStyle::None;
  253. this->textBox8->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  254. this->textBox8->ForeColor = System::Drawing::Color::White;
  255. this->textBox8->Location = System::Drawing::Point(260, 220);
  256. this->textBox8->Multiline = true;
  257. this->textBox8->Name = L"textBox8";
  258. this->textBox8->ReadOnly = true;
  259. this->textBox8->Size = System::Drawing::Size(276, 105);
  260. this->textBox8->TabIndex = 46;
  261. //
  262. // textBox7
  263. //
  264. this->textBox7->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  265. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  266. this->textBox7->BorderStyle = System::Windows::Forms::BorderStyle::None;
  267. this->textBox7->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  268. this->textBox7->ForeColor = System::Drawing::Color::White;
  269. this->textBox7->Location = System::Drawing::Point(10, 220);
  270. this->textBox7->Multiline = true;
  271. this->textBox7->Name = L"textBox7";
  272. this->textBox7->ReadOnly = true;
  273. this->textBox7->Size = System::Drawing::Size(244, 105);
  274. this->textBox7->TabIndex = 45;
  275. //
  276. // textBox6
  277. //
  278. this->textBox6->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  279. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  280. this->textBox6->BorderStyle = System::Windows::Forms::BorderStyle::None;
  281. this->textBox6->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  282. this->textBox6->ForeColor = System::Drawing::Color::White;
  283. this->textBox6->Location = System::Drawing::Point(260, 79);
  284. this->textBox6->Multiline = true;
  285. this->textBox6->Name = L"textBox6";
  286. this->textBox6->ReadOnly = true;
  287. this->textBox6->Size = System::Drawing::Size(276, 107);
  288. this->textBox6->TabIndex = 44;
  289. //
  290. // textBox5
  291. //
  292. this->textBox5->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  293. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  294. this->textBox5->BorderStyle = System::Windows::Forms::BorderStyle::None;
  295. this->textBox5->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  296. this->textBox5->ForeColor = System::Drawing::Color::White;
  297. this->textBox5->Location = System::Drawing::Point(10, 79);
  298. this->textBox5->Multiline = true;
  299. this->textBox5->Name = L"textBox5";
  300. this->textBox5->ReadOnly = true;
  301. this->textBox5->Size = System::Drawing::Size(244, 107);
  302. this->textBox5->TabIndex = 43;
  303. //
  304. // textBox4
  305. //
  306. this->textBox4->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  307. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  308. this->textBox4->BorderStyle = System::Windows::Forms::BorderStyle::None;
  309. this->textBox4->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  310. this->textBox4->ForeColor = System::Drawing::Color::White;
  311. this->textBox4->Location = System::Drawing::Point(396, 27);
  312. this->textBox4->Name = L"textBox4";
  313. this->textBox4->ReadOnly = true;
  314. this->textBox4->Size = System::Drawing::Size(140, 20);
  315. this->textBox4->TabIndex = 42;
  316. //
  317. // textBox3
  318. //
  319. this->textBox3->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  320. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  321. this->textBox3->BorderStyle = System::Windows::Forms::BorderStyle::None;
  322. this->textBox3->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  323. this->textBox3->ForeColor = System::Drawing::Color::White;
  324. this->textBox3->Location = System::Drawing::Point(260, 27);
  325. this->textBox3->Name = L"textBox3";
  326. this->textBox3->ReadOnly = true;
  327. this->textBox3->Size = System::Drawing::Size(130, 20);
  328. this->textBox3->TabIndex = 41;
  329. //
  330. // textBox2
  331. //
  332. this->textBox2->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  333. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  334. this->textBox2->BorderStyle = System::Windows::Forms::BorderStyle::None;
  335. this->textBox2->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  336. this->textBox2->ForeColor = System::Drawing::Color::White;
  337. this->textBox2->Location = System::Drawing::Point(146, 27);
  338. this->textBox2->Name = L"textBox2";
  339. this->textBox2->ReadOnly = true;
  340. this->textBox2->Size = System::Drawing::Size(108, 20);
  341. this->textBox2->TabIndex = 40;
  342. //
  343. // textBox1
  344. //
  345. this->textBox1->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(55)), static_cast<System::Int32>(static_cast<System::Byte>(55)),
  346. static_cast<System::Int32>(static_cast<System::Byte>(55)));
  347. this->textBox1->BorderStyle = System::Windows::Forms::BorderStyle::None;
  348. this->textBox1->Font = (gcnew System::Drawing::Font(L"Tahoma", 12));
  349. this->textBox1->ForeColor = System::Drawing::Color::White;
  350. this->textBox1->Location = System::Drawing::Point(10, 27);
  351. this->textBox1->Name = L"textBox1";
  352. this->textBox1->ReadOnly = true;
  353. this->textBox1->Size = System::Drawing::Size(130, 20);
  354. this->textBox1->TabIndex = 39;
  355. //
  356. // AcceptedApplications
  357. //
  358. this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
  359. this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
  360. this->ClientSize = System::Drawing::Size(775, 337);
  361. this->Controls->Add(this->bunifuCustomDataGrid1);
  362. this->Controls->Add(this->label8);
  363. this->Controls->Add(this->label7);
  364. this->Controls->Add(this->label6);
  365. this->Controls->Add(this->label5);
  366. this->Controls->Add(this->label4);
  367. this->Controls->Add(this->label3);
  368. this->Controls->Add(this->label2);
  369. this->Controls->Add(this->label1);
  370. this->Controls->Add(this->textBox8);
  371. this->Controls->Add(this->textBox7);
  372. this->Controls->Add(this->textBox6);
  373. this->Controls->Add(this->textBox5);
  374. this->Controls->Add(this->textBox4);
  375. this->Controls->Add(this->textBox3);
  376. this->Controls->Add(this->textBox2);
  377. this->Controls->Add(this->textBox1);
  378. this->Name = L"AcceptedApplications";
  379. this->Text = L"AcceptedApplications";
  380. this->Load += gcnew System::EventHandler(this, &AcceptedApplications::AcceptedApplications_Load);
  381. (cli::safe_cast<System::ComponentModel::ISupportInitialize^>(this->bunifuCustomDataGrid1))->EndInit();
  382. this->ResumeLayout(false);
  383. this->PerformLayout();
  384.  
  385. }
  386. #pragma endregion
  387. private: System::Void AcceptedApplications_Load(System::Object^ sender, System::EventArgs^ e) {
  388. MySqlCommand^ com = gcnew MySqlCommand("command", conn);
  389. adapter = new MySqlAdapter(com);
  390. }
  391. };
  392. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement