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
Web Browser 1.0 - Form2.vb

Form2.vb

Caricato da:
Scarica il programma completo

  1. Imports System
  2. Imports System.IO
  3. Public Class Form2
  4.  
  5.     Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  6.         TextBox1.Text = Form1.WebBrowser1.DocumentText.ToString
  7.     End Sub
  8.  
  9.     Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
  10.         Clipboard.SetText(TextBox1.Text)
  11.     End Sub
  12.  
  13.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  14.         Me.Close()
  15.     End Sub
  16.  
  17.     Private Sub CloseToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
  18.         Me.Close()
  19.     End Sub
  20. End Class