Advertisement
Kolpa

best source code ever made by human kind

Aug 21st, 2012
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.82 KB | None | 0 0
  1. Public Class Form1
  2.  
  3.     Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles Me.Load
  4.         Timer1.Interval = 30 * 1000
  5.         Me.ShowInTaskbar = False
  6.         Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
  7.         Me.Width = 0
  8.         Me.Height = 0
  9.         Timer1.Enabled = True
  10.     End Sub
  11.  
  12.     Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
  13.             Timer1.Enabled = False
  14.             Me.WindowState = FormWindowState.Minimized
  15.             Me.WindowState = FormWindowState.Maximized
  16.             WebBrowser1.Width = Screen.PrimaryScreen.Bounds.Width
  17.             WebBrowser1.Height = Screen.PrimaryScreen.Bounds.Height
  18.             WebBrowser1.Navigate("http://jupiter.kamfjord-it.no/~wheelman/Saxguy/sexophone.swf")
  19.     End Sub
  20. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement