This is your place for codes, sources, releases, snippets, tutorials, how-to's and everything you can imagine in VB.NET (visual basic).Everything is free and off-charge.Your comments are aways appriciated.
4/28/11
[VB.NET][SNP] Disable Taskbar
Dim intReturn As Integer = FindWindow("Shell_traywnd", "")
SetWindowPos(intReturn, 0, 0, 0, 0, 0, SWP_HIDEWINDOW)
And to enable it:
change SWP_HIDEWINDOW to SWP_SHOWWINDOW
No comments:
Post a Comment