Advertisement
calfred2808

hide me now

Jun 4th, 2016
652
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.38 KB | None | 0 0
  1. Public Sub hideMenow()
  2.         MainForm.Opacity = 0       
  3.        MainForm.FormBorderStyle = FormBorderStyle.SizableToolWindow
  4.         MainForm.Hide()
  5.         MainForm.WindowState = FormWindowState.Minimized
  6.         MainForm.Size = New Size(1, 1)
  7.         MainForm.ShowInTaskbar = False
  8.         MainForm.Visible = False
  9.         MainForm.Location = New Point(100000000, 100000000)
  10.  
  11.     End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement