Richard Bell wrote:
> I'm having trouble using the GetProperty and PutProperty COM interfaces with
> IE.  ...
>>>> ie.Height = 600
>>>>         
>
> Actually changes IE's height.
>
>   
>>>> ie.Height
>>>>         
> 600
> Reports it.
> But ...
>   
>>>> print ie.GetProperty('Height')
>>>>         
> None
> And ...
>
>   
>>>> print ie.PutProperty('Height', 400) 
>>>>         
> None
> Does nothing.
>
> Any clues how to use the GetProperty and PutProperty methods?
>   

I may be mistaken, but from my reading of the documents, GetProperty and
PutProperty are intended to pass property information to the web page
currently being displayed, not as an alternate method of manipulating
the properties of the IE object itself.

    http://msdn2.microsoft.com/en-us/library/ms976136.aspx

-- 
Tim Roberts, [EMAIL PROTECTED]
Providenza & Boekelheide, Inc.

_______________________________________________
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to