Exemplo n.º 1
0
        private void Form1_Load(object sender, EventArgs e)
        {
            Interaction.Instance.ReportMessage(string.IsNullOrEmpty(Utilities.PublicKey)
                                                   ? "Using default public key"
                                                   : "Using personal public key");

            // Check for updates, if enabled
            if (Settings.Default.CheckForUpdates)
            {
                Ripp3rUpdate.CheckForUpdate();
            }

            DetectDriveAsync();
        }
Exemplo n.º 2
0
 private void checkForUpdatesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Ripp3rUpdate.CheckForUpdate(true);
 }