modifying a WinForm's base class components
I've got an MDI form going, and i want to permanently remove the scrollbars. Autoscroll=flase doesnt work too well, so count that out.
Now i'm thinking, if the scrollbars are actually children of the class Windows.Forms.Form, how can i access this base class to remove its components? Any idea how this is done? The only tutorials i found were related to overriding base class methods, but i need to override base class form components.
mike