Form1’e yazalacak kodlar
[code lang=”vbnet”]Public Class Form1
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button1.Click
Form2.Show()
Me.Hide()
Form2.Label2.Text = "İyi günler " & TextBox1.Text
End Sub
End Class[/code]
Form2’ye yazalacak kodlar
[code lang=”vbnet”]Public Class Form2
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button1.Click
Form1.Show()
Me.Close()
End Sub
End Class[/code]
Uygulamayı aşağıdaki Projeyi İNDİR linkinden indirebilirsiniz.


bi aralar baya aramıştım bunu 🙂
O bir aralar biz yoktuk demek ki 🙂
bu kodları yazınca form2 is not declered diye hata veriyor neden acaba
mehmet:
Kodlarda bir sıkıntı yok.Yukarıdaki Projeyi İNDİR’den indirebilirsin.