Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

Form 1 Public Class Form1 Public Property memo As String Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.

Even tArgs) Handles MyBase.Load LblTime.Hide() Timer1 = New Timer AddHandler Timer1.Tick, AddressOf Timer1_Tick Timer1.Start() End Sub Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.Eve ntArgs) Handles Timer1.Tick Waktu.Text = TimeOfDay LblTime.Text = DateAndTime.Now.ToLongTimeString If alarmcheck.Checked = True Then If alarm.Text = DateAndTime.Now.ToLongTimeString Then AxWindowsMediaPlayer1.URL = TextBox2.Text Form2.Show() End If Else AxWindowsMediaPlayer1.Ctlcontrols.stop() End If End Sub Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As S ystem.EventArgs) Handles TextBox1.TextChanged memo = TextBox1.Text End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.E ventArgs) Handles Button1.Click OpenFileDialog1.ShowDialog() TextBox2.Text = OpenFileDialog1.FileName End Sub

End Class Form 2 Public Class Form2

Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As S ystem.EventArgs) Handles TextBox1.TextChanged End Sub Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.Even tArgs) Handles MyBase.Load TextBox1.Text = Form1.memo End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.E ventArgs) Handles Button1.Click Me.Close() Form1.Close() End Sub End Class

You might also like