Re: [IronPython] ScrollBarsEnabled problem

2006-09-15 Thread Floris van Nee
Ah ok, but my next question would be then, how would I do that in IronPython with the WebBrowser. They seem to have disabled it there. It only works with AxWebBrowser, but I can't acces that in IronPython.   Does anyone of you know that?   Floris  On 9/15/06, Dino Viehland <[EMAIL PROTECTED]> wrote

Re: [IronPython] ScrollBarsEnabled problem

2006-09-15 Thread Dino Viehland
ugh the web browser interfaces. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Floris van Nee Sent: Friday, September 15, 2006 1:23 AM To: Discussion of IronPython Subject: Re: [IronPython] ScrollBarsEnabled problem Yeh, it should. But even then, it still displays the scrollbar when v

Re: [IronPython] ScrollBarsEnabled problem

2006-09-15 Thread Floris van Nee
Yeh, it should. But even then, it still displays the scrollbar when viewing certain sites. I found out that it has something to do with sites with frames. When I navigate to a site with frames, it displays the scrollbars, and when I navigate to a site without frames, it doesn't display them.   But

Re: [IronPython] ScrollBarsEnabled problem

2006-09-14 Thread J. Merrill
At 01:45 PM 9/12/2006, Dino Viehland wrote >This might be a better question on a newsgroup specific to .NET or the IE web >control. Adding the ScrollBarsEnabled = False is the same as doing: > >WebBrowser1 = WebBrowser() >WebBrowser1.ScrollBarsEnabled = True Shouldn't that be = False???

Re: [IronPython] ScrollBarsEnabled problem

2006-09-12 Thread Dino Viehland
: [IronPython] ScrollBarsEnabled problem   Hey,   I've used IronPython for a few days now, and I'm making a program with it which has a WebBrowser control. I want the ScrollBarsEnabled property set to False. Now, my code to do that is:   WebBrowser1 =

[IronPython] ScrollBarsEnabled problem

2006-09-12 Thread Floris van Nee
Hey,   I've used IronPython for a few days now, and I'm making a program with it which has a WebBrowser control. I want the ScrollBarsEnabled property set to False. Now, my code to do that is:   WebBrowser1 = WebBrowser(ScrollBarsEnabled=False)   This works perfectly for most sites. However wheneve