Fhernd

DialogoMedioPublicitario.cs

Sep 3rd, 2014
1,222
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.63 KB | None | 0 0
  1. // ===++===
  2. //
  3. //    OrtizOL
  4. //
  5. // ===--===
  6. /*============================================================
  7. //
  8. // Clase: DialogoMedioPublicitario.cs
  9. //
  10. // Propósito: Controles para la selección del medio
  11. // publicitario que influyó el voto.
  12. //
  13. ============================================================*/
  14. using System;
  15. using System.Collections.Generic;
  16. using System.ComponentModel;
  17. using System.Data;
  18. using System.Drawing;
  19. using System.Linq;
  20. using System.Text;
  21. using System.Threading.Tasks;
  22. using System.Windows.Forms;
  23. using N1_EleccionesCupi2.Modelo;
  24.  
  25. namespace N1_EleccionesCupi2.GUI
  26. {
  27.     /// <summary>
  28.     /// Formulario con controles de selección de de medio publicitario.
  29.     /// </summary>
  30.     public partial class DialogoMedioPublicitario : Form
  31.     {
  32.         #region Campos
  33.         /// <summary>
  34.         /// Interfaz de usuario principal.
  35.         /// </summary>
  36.         private Principal principal;
  37.         #endregion
  38.  
  39.         #region Constructores
  40.         /// <summary>
  41.         /// Crea una instancia del formulario para contener controles de selección de medio publicitario.
  42.         /// </summary>
  43.         /// <param name="principal">Referencia a la interfaz principal de la aplicación.</param>
  44.         public DialogoMedioPublicitario(Principal principal)
  45.         {
  46.             InitializeComponent();
  47.             this.principal = principal;
  48.             cbxMedioPublicitario.SelectedIndex = 0;
  49.         }
  50.         #endregion
  51.  
  52.         #region Eventos
  53.         /// <summary>
  54.         /// Cancela el voto.
  55.         /// </summary>
  56.         /// <param name="sender">Objeto generador del evento.</param>
  57.         /// <param name="e">Datos del evento</param>
  58.         private void btnCancelar_Click(object sender, EventArgs e)
  59.         {
  60.             principal.Medio = 0;
  61.             this.Close();
  62.         }
  63.         /// <summary>
  64.         /// Selecciona medio publicitario.
  65.         /// </summary>
  66.         /// <param name="sender">Objeto generador del evento.</param>
  67.         /// <param name="e">Datos del evento</param>
  68.         private void btnSeleccionarMedio_Click(object sender, EventArgs e)
  69.         {
  70.             switch (cbxMedioPublicitario.SelectedIndex)
  71.             {
  72.                 case 0:
  73.                     principal.Medio = MedioPublicitario.Internet;
  74.                     break;
  75.                 case 1:
  76.                     principal.Medio = MedioPublicitario.Radio;
  77.                     break;
  78.                 case 2:
  79.                     principal.Medio = MedioPublicitario.Television;
  80.                     break;
  81.             }
  82.  
  83.             this.Close();
  84.         }
  85.         #endregion
  86.     }
  87. }
Advertisement
Comments
  • shobyto
    96 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 38% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without any verification from Swapzone — instant swap).
Add Comment
Please, Sign In to add comment