home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2002 December (Special)
/
PCWorld_2002-12_Special_cd.bin
/
Special_komplet
/
special_komplet.exe
/
Hide.vbs
< prev
next >
Wrap
Text File
|
2002-01-03
|
692b
|
34 lines
set MyShell = CreateObject("Wscript.Shell")
set MyTasks = CreateObject("pcwHide.pcwHide")
do
redim task(400)
redim hidden(400)
liste=""
count=MyTasks.ListAll
for n=0 to ubound(count)-1
zahl=MyTasks.List
for z=0 to ubound(zahl)-1
if count(n)=zahl(z) then
hidden(n)=1
exit for
end if
Next
if hidden(n)=1 then
liste=liste & vbCR & "*" & n & chr(9) & count(n)
else
liste=liste & vbCR & " " & n & chr(9) & count(n)
end if
Next
i=inputbox(liste, "Stav programu zm∞nφte zadßnφm identifikaΦnφho Φφsla",400)
if i=400 or i ="" then wscript.quit
if hidden(i)=0 then
action=MyTasks.Hide(count(i))
else
action=MyTasks.Show(count(i))
end if
loop