Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Converter PNG to ICO - Informazioni.vb

Informazioni.vb

Caricato da: R0gerblack
Scarica il programma completo

  1. Public Class Informazioni
  2.  
  3.     Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
  4.         Try
  5.             Process.Start("mailto:ruggiero_altini@hotmail.it")
  6.         Catch ex As Exception
  7.             MsgBox("Impostare un programma per la posta elettronica", MsgBoxStyle.Critical)
  8.         End Try
  9.     End Sub
  10.  
  11.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  12.         BugReport.ShowDialog()
  13.     End Sub
  14.  
  15.     Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
  16.         Me.Close()
  17.     End Sub
  18.  
  19.     Private Sub Informazioni_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  20.         Me.BackgroundImage = Form1.BackgroundImage
  21.     End Sub
  22. End Class