Re: [H] Winbatch

2006-03-12 Thread Wayne Johnson

At 11:56 PM 3/11/2006, W. D. typed:

Works great.  If you are not going to use a full-fledged
programming language, it's a good choice for scripting.


FWIW, I like it.


--+--
   Wayne D. Johnson
Ashland, OH, USA 44805
http://www.wavijo.com 



Re: [H] Blocking AOL IM....

2006-03-12 Thread FORC5
why not just remove AIM ?

At 08:45 PM 3/11/2006, Bobby Heid Poked the stick with:

Hi all, 

I need to block AOL IM on my machine at home.  I have a Linksys WRT54GS v4 and 
Sygate personal firewall pro.  What is the best way to implement this?

Thanks, 
Bobby 

-- 
Tallyho ! ]:8)
Taglines below !
--
Xerox never comes up with anything original anymore.



[H] compile Python script

2006-03-12 Thread Winterlight

How would I compile this Python script ? Thanks

-

a=IntControl(31,0,0,0,0)  ;return list of ids of explorer windows
c=ItemCount(a,@TAB)
switch c
   case 0
  run(explorer.exe,)
  while FindWindow(ExploreWClass)==;wait for it to come up
Yield
  end while
  ;Fall into case 1

   case 1
  TimeDelay(0.5)
  run(explorer.exe,)
  break
   case c   ; 2 or more
  break
endswitch
d=1
while c2  d500
   a=IntControl(31,0,0,0,0)
   c=ItemCount(a,@TAB)
   d=d+1
endwhile
if c2 then exit
id1=ItemExtract(1,a,@TAB)
id2=ItemExtract(2,a,@tab)
TimeDelay(0.75)
WinPlaceSet(@NORMAL,id2,500 0 1000 900)
WinShow(id2)
Yield
Yield
WinPlaceSet(@NORMAL,id1,0 0 500 900)
WinShow(id1)

 exit