Reklam Pencereli Program
Programınıza 2 tane Form koyun. Form1 re Picturebox ekleyin.
pictureboxun FormBorderStyle sini None yapın.
daha sonra kodu kendinize göre ayarlayın.
Kullanıcı Sizin reklamınıza bastıktan sonra form2 ye yönlenecektir.
EKLENECEKLER:
2 FORM
1 PİCTUREBOX
Public Class Form1
Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click
Form2.Show()
Dim process As New System.Diagnostics.Process
process.StartInfo.FileName = "www.visualbasicdersleri.com"
process.StartInfo.Verb = "Open"
process.StartInfo.WindowStyle = ProcessWindowStyle.Normal
process.Start()
End Sub
End Class

0 yorum: