Blitz Toolbox/DLLs/HideWindow DLL

HideWindow DLL by Xzider

http://rapidshare.com/files/150689841/HideWindowDLL.zip.html

About

Description: Use to hide/show a window currently running. Use the HideWindow function once putting the "hidewindow.dll" and "hidewindow.decls" files in the Blitz3D\UserLibs folder. HideWindow takes one parameter f_procName$ which is the name of the TITLE of the window. Also use ShowWindow the same way.

Download: http://rapidshare.com/files/150758760/HideWindowDLL.zip.html

Example Code:


;Can change Title$ to whatever you want to hide.

AppTitle "HideWindow Example"

		Title$ = "HideWindow Example"
		
		Result% = HideWindow(Title$)

  If Result%

		Print Title$ + " hidden!"
		
  Else

		Print "Failed to hide " + Title$
		
  End If


		Delay 2000
		
		Print
		
		Result% = ShowWindow(Title$)

  If Result%

		Print Title$ + " shown!"
		
  Else

		Print "Failed to show " + Title$
		
  End If


		Print
		Print "Press any key to quit."
		Print
		
		WaitKey
		End