HI,
I need to know how i can minimize all windows. The windows names i dont know. I try with:
let>wf_type=1
win>2,*
but this not working... wich is my error ?
thanks for advanced
Herofest
How i can minimze all windows...
Moderators: JRL, Dorian (MJT support)
Hi,
This is one way:
VBSTART
Sub MinimizeAll
Set oShellApp = CreateObject("Shell.Application")
oShellApp.MinimizeAll
End Sub
VBEND
VBRun>MinimizeAll
This is one way:
VBSTART
Sub MinimizeAll
Set oShellApp = CreateObject("Shell.Application")
oShellApp.MinimizeAll
End Sub
VBEND
VBRun>MinimizeAll
MJT Net Support
[email protected]
[email protected]
A followup question from another user
I have the same question as Hero_Fest and just tacked mine on the end of this thread. I don't have either VBScript (I use Msched ver 5.10) or a keyboard with a WinKey. Is there another way?
I am using Windows XP. I know that if I double-click the Show Desktop.scf file it minimizes all. In Msched I tried to run this file as program without success. I can't figure out the language to make it run (maybe something like RUNDLL to execute it)?
Any thoughts on this approach or some other?
Thnaks
Dave Bish
I am using Windows XP. I know that if I double-click the Show Desktop.scf file it minimizes all. In Msched I tried to run this file as program without success. I can't figure out the language to make it run (maybe something like RUNDLL to execute it)?
Any thoughts on this approach or some other?
Thnaks
Dave Bish
Hi,
Good idea! Works for me:
ExecuteFile>C:\Documents and Settings\User\Application Data\Microsoft\Internet Explorer\Quick Launch\Show Desktop.scf
Good idea! Works for me:
ExecuteFile>C:\Documents and Settings\User\Application Data\Microsoft\Internet Explorer\Quick Launch\Show Desktop.scf
MJT Net Support
[email protected]
[email protected]
So thats how I do it!
I was trying Run Program> . . . Show Desktop.scf without luck. Never thought to use ExecuteFile. Works great. Thanks
Dave
Dave