Guest User

Untitled

a guest
Oct 19th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9.  
  10. namespace WindowsFormsApplication3
  11. {
  12. public partial class Form1 : Form
  13. {
  14. public Form1()
  15. {
  16. InitializeComponent();
  17. }
  18.  
  19. private void button1_Click(object sender, EventArgs e)
  20. {
  21. if (radioButton1.Checked)
  22. {
  23. Random rnd = new Random();
  24. int x = rnd.Next(111111, 9999999);
  25. string var1 = x.ToString();
  26. Random rnd2 = new Random();
  27. int y = rnd2.Next(111111, 9999999);
  28. string var2 = y.ToString();
  29. textBox1.Text = ("Megaupload User: " + x + ":" + y * 2);
  30.  
  31. }
  32. else if (radioButton2.Checked)
  33. {
  34. Random rnd = new Random();
  35. int x = rnd.Next(111111, 9999999);
  36. Random rnd2 = new Random();
  37. int y = rnd2.Next(111111, 9999999);
  38. string var1 = x.ToString();
  39. string var2 = y.ToString();
  40. textBox1.Text = ("Rapidshare User: " + x + ":" + y * 2);
  41. }
  42. else if (radioButton3.Checked)
  43. {
  44. Random rnd = new Random();
  45. int x = rnd.Next(111111111, 999999999);
  46. string var1 = x.ToString();
  47. textBox1.Text = ("Fileflyer Password:" + var1);
  48. }
  49. else if (radioButton4.Checked)
  50. {
  51. Random rnd = new Random();
  52. int x = rnd.Next(111111, 9999999);
  53. Random rnd2 = new Random();
  54. int y = rnd2.Next(111111, 9999999);
  55. string var1 = x.ToString();
  56. string var2 = y.ToString();
  57. textBox1.Text = ("Hotefile User:: " + x + ":" + y * 2);
  58. }
  59. }
  60.  
  61. private void button2_Click(object sender, EventArgs e)
  62. {
  63. textBox1.Text = (" ");
  64. }
  65.  
  66. private void button3_Click(object sender, EventArgs e)
  67. {
  68. Application.Exit();
  69. }
  70. }
  71. }
Add Comment
Please, Sign In to add comment