Home All Groups Group Topic Archive Search About

Scroll on MouseWheel Event - VB.NET 1.1

Author
24 Mar 2006 11:29 AM
James
Hi,

I have a Windows Forms application which uses multiple child forms (MDI
interface).

The height of one of the child forms is larger than the height of the MDI
client area, so when this form is visible, the vertical scroll bar of the MDI
parent appears automatically.

What I want to do is write a routine within the MouseWheel event of the MDI
parent to scroll the window so that the lower half of the child form comes
into view. At the moment, my users have to click the scroll bar to do this.

Regards,

James

Author
24 Mar 2006 11:36 AM
Stephany Young
Post it here when you've done it. I'm sure that others will be interested.


Show quoteHide quote
"James" <Ja***@discussions.microsoft.com> wrote in message
news:6B4E0B42-1A30-491C-8B1C-1FC7F1842640@microsoft.com...
> Hi,
>
> I have a Windows Forms application which uses multiple child forms (MDI
> interface).
>
> The height of one of the child forms is larger than the height of the MDI
> client area, so when this form is visible, the vertical scroll bar of the
> MDI
> parent appears automatically.
>
> What I want to do is write a routine within the MouseWheel event of the
> MDI
> parent to scroll the window so that the lower half of the child form comes
> into view. At the moment, my users have to click the scroll bar to do
> this.
>
> Regards,
>
> James
Author
24 Mar 2006 1:43 PM
James
I can't figure how to do it, which is why I have posted it here. I was rather
hoping you would tell me...

Show quoteHide quote
"Stephany Young" wrote:

> Post it here when you've done it. I'm sure that others will be interested.
>
>
> "James" <Ja***@discussions.microsoft.com> wrote in message
> news:6B4E0B42-1A30-491C-8B1C-1FC7F1842640@microsoft.com...
> > Hi,
> >
> > I have a Windows Forms application which uses multiple child forms (MDI
> > interface).
> >
> > The height of one of the child forms is larger than the height of the MDI
> > client area, so when this form is visible, the vertical scroll bar of the
> > MDI
> > parent appears automatically.
> >
> > What I want to do is write a routine within the MouseWheel event of the
> > MDI
> > parent to scroll the window so that the lower half of the child form comes
> > into view. At the moment, my users have to click the scroll bar to do
> > this.
> >
> > Regards,
> >
> > James
>
>
>
Author
24 Mar 2006 1:48 PM
Stephany Young
Then I suggest that you rephrase your problem and actually ask for some
help.

All your original post did was make 2 very vague statements.


Show quoteHide quote
"James" <Ja***@discussions.microsoft.com> wrote in message
news:E8A2A143-F834-4545-8386-E9C699D629FB@microsoft.com...
>I can't figure how to do it, which is why I have posted it here. I was
>rather
> hoping you would tell me...
>
> "Stephany Young" wrote:
>
>> Post it here when you've done it. I'm sure that others will be
>> interested.
>>
>>
>> "James" <Ja***@discussions.microsoft.com> wrote in message
>> news:6B4E0B42-1A30-491C-8B1C-1FC7F1842640@microsoft.com...
>> > Hi,
>> >
>> > I have a Windows Forms application which uses multiple child forms (MDI
>> > interface).
>> >
>> > The height of one of the child forms is larger than the height of the
>> > MDI
>> > client area, so when this form is visible, the vertical scroll bar of
>> > the
>> > MDI
>> > parent appears automatically.
>> >
>> > What I want to do is write a routine within the MouseWheel event of the
>> > MDI
>> > parent to scroll the window so that the lower half of the child form
>> > comes
>> > into view. At the moment, my users have to click the scroll bar to do
>> > this.
>> >
>> > Regards,
>> >
>> > James
>>
>>
>>
Author
3 Apr 2006 8:55 AM
James
Stephany,

I gave some background information to the problem to put it in context. I
belive I stated the problem quite clearly: "What I want to do is write a
routine within the MouseWheel event of the MDI parent to scroll the window so
that the lower half of the child form comes into view."

Perhaps it is not phrased as well as it could have been, but nevertheless, I
need help in writing a routine to scroll the parent window when the
MouseWheel event fires. The MouseWheel event exposes a MouseEventArgs object
that I can use to detect how much the user has moved the wheel, but how do I
then scroll the window in response to this? The form does not expose Scroll
method.

Regards,

James



Show quoteHide quote
"Stephany Young" wrote:

> Then I suggest that you rephrase your problem and actually ask for some
> help.
>
> All your original post did was make 2 very vague statements.
>
>
> "James" <Ja***@discussions.microsoft.com> wrote in message
> news:E8A2A143-F834-4545-8386-E9C699D629FB@microsoft.com...
> >I can't figure how to do it, which is why I have posted it here. I was
> >rather
> > hoping you would tell me...
> >
> > "Stephany Young" wrote:
> >
> >> Post it here when you've done it. I'm sure that others will be
> >> interested.
> >>
> >>
> >> "James" <Ja***@discussions.microsoft.com> wrote in message
> >> news:6B4E0B42-1A30-491C-8B1C-1FC7F1842640@microsoft.com...
> >> > Hi,
> >> >
> >> > I have a Windows Forms application which uses multiple child forms (MDI
> >> > interface).
> >> >
> >> > The height of one of the child forms is larger than the height of the
> >> > MDI
> >> > client area, so when this form is visible, the vertical scroll bar of
> >> > the
> >> > MDI
> >> > parent appears automatically.
> >> >
> >> > What I want to do is write a routine within the MouseWheel event of the
> >> > MDI
> >> > parent to scroll the window so that the lower half of the child form
> >> > comes
> >> > into view. At the moment, my users have to click the scroll bar to do
> >> > this.
> >> >
> >> > Regards,
> >> >
> >> > James
> >>
> >>
> >>
>
>
>
Author
3 Apr 2006 4:31 PM
Rocky
You set the scroll postion using Me.AutoScrollPosition:
Me.AutoScrollPosition = New Point(0,0)

Show quoteHide quote
"James" <Ja***@discussions.microsoft.com> wrote in message
news:26C8167C-A0D1-4D7D-9305-561F37555839@microsoft.com...
> Stephany,
>
> I gave some background information to the problem to put it in context. I
> belive I stated the problem quite clearly: "What I want to do is write a
> routine within the MouseWheel event of the MDI parent to scroll the window
> so
> that the lower half of the child form comes into view."
>
> Perhaps it is not phrased as well as it could have been, but nevertheless,
> I
> need help in writing a routine to scroll the parent window when the
> MouseWheel event fires. The MouseWheel event exposes a MouseEventArgs
> object
> that I can use to detect how much the user has moved the wheel, but how do
> I
> then scroll the window in response to this? The form does not expose
> Scroll
> method.
>
> Regards,
>
> James
>
>
>
> "Stephany Young" wrote:
>
>> Then I suggest that you rephrase your problem and actually ask for some
>> help.
>>
>> All your original post did was make 2 very vague statements.
>>
>>
>> "James" <Ja***@discussions.microsoft.com> wrote in message
>> news:E8A2A143-F834-4545-8386-E9C699D629FB@microsoft.com...
>> >I can't figure how to do it, which is why I have posted it here. I was
>> >rather
>> > hoping you would tell me...
>> >
>> > "Stephany Young" wrote:
>> >
>> >> Post it here when you've done it. I'm sure that others will be
>> >> interested.
>> >>
>> >>
>> >> "James" <Ja***@discussions.microsoft.com> wrote in message
>> >> news:6B4E0B42-1A30-491C-8B1C-1FC7F1842640@microsoft.com...
>> >> > Hi,
>> >> >
>> >> > I have a Windows Forms application which uses multiple child forms
>> >> > (MDI
>> >> > interface).
>> >> >
>> >> > The height of one of the child forms is larger than the height of
>> >> > the
>> >> > MDI
>> >> > client area, so when this form is visible, the vertical scroll bar
>> >> > of
>> >> > the
>> >> > MDI
>> >> > parent appears automatically.
>> >> >
>> >> > What I want to do is write a routine within the MouseWheel event of
>> >> > the
>> >> > MDI
>> >> > parent to scroll the window so that the lower half of the child form
>> >> > comes
>> >> > into view. At the moment, my users have to click the scroll bar to
>> >> > do
>> >> > this.
>> >> >
>> >> > Regards,
>> >> >
>> >> > James
>> >>
>> >>
>> >>
>>
>>
>>
Author
3 Apr 2006 4:45 PM
James
Thanks Rocky,

How do I convert the delta value from the MouseEventArgs object to a Point
object?

Regards,

James

Show quoteHide quote
"Rocky" wrote:

> You set the scroll postion using Me.AutoScrollPosition:
> Me.AutoScrollPosition = New Point(0,0)
>
> "James" <Ja***@discussions.microsoft.com> wrote in message
> news:26C8167C-A0D1-4D7D-9305-561F37555839@microsoft.com...
> > Stephany,
> >
> > I gave some background information to the problem to put it in context. I
> > belive I stated the problem quite clearly: "What I want to do is write a
> > routine within the MouseWheel event of the MDI parent to scroll the window
> > so
> > that the lower half of the child form comes into view."
> >
> > Perhaps it is not phrased as well as it could have been, but nevertheless,
> > I
> > need help in writing a routine to scroll the parent window when the
> > MouseWheel event fires. The MouseWheel event exposes a MouseEventArgs
> > object
> > that I can use to detect how much the user has moved the wheel, but how do
> > I
> > then scroll the window in response to this? The form does not expose
> > Scroll
> > method.
> >
> > Regards,
> >
> > James
> >
> >
> >
> > "Stephany Young" wrote:
> >
> >> Then I suggest that you rephrase your problem and actually ask for some
> >> help.
> >>
> >> All your original post did was make 2 very vague statements.
> >>
> >>
> >> "James" <Ja***@discussions.microsoft.com> wrote in message
> >> news:E8A2A143-F834-4545-8386-E9C699D629FB@microsoft.com...
> >> >I can't figure how to do it, which is why I have posted it here. I was
> >> >rather
> >> > hoping you would tell me...
> >> >
> >> > "Stephany Young" wrote:
> >> >
> >> >> Post it here when you've done it. I'm sure that others will be
> >> >> interested.
> >> >>
> >> >>
> >> >> "James" <Ja***@discussions.microsoft.com> wrote in message
> >> >> news:6B4E0B42-1A30-491C-8B1C-1FC7F1842640@microsoft.com...
> >> >> > Hi,
> >> >> >
> >> >> > I have a Windows Forms application which uses multiple child forms
> >> >> > (MDI
> >> >> > interface).
> >> >> >
> >> >> > The height of one of the child forms is larger than the height of
> >> >> > the
> >> >> > MDI
> >> >> > client area, so when this form is visible, the vertical scroll bar
> >> >> > of
> >> >> > the
> >> >> > MDI
> >> >> > parent appears automatically.
> >> >> >
> >> >> > What I want to do is write a routine within the MouseWheel event of
> >> >> > the
> >> >> > MDI
> >> >> > parent to scroll the window so that the lower half of the child form
> >> >> > comes
> >> >> > into view. At the moment, my users have to click the scroll bar to
> >> >> > do
> >> >> > this.
> >> >> >
> >> >> > Regards,
> >> >> >
> >> >> > James
> >> >>
> >> >>
> >> >>
> >>
> >>
> >>
>
>
>
Author
3 Apr 2006 7:18 PM
Rocky
Dim pt As New Point(Me.AutoScrollPosition.X, Me.AutoScrollPosition.Y +
e.Delta)

Me.AutoScrollPosition = pt


Show quoteHide quote
"James" <Ja***@discussions.microsoft.com> wrote in message
news:2E3FEE08-3A99-4779-8309-C52D388749AC@microsoft.com...
> Thanks Rocky,
>
> How do I convert the delta value from the MouseEventArgs object to a Point
> object?
>
> Regards,
>
> James
>
> "Rocky" wrote:
>
>> You set the scroll postion using Me.AutoScrollPosition:
>> Me.AutoScrollPosition = New Point(0,0)
>>
>> "James" <Ja***@discussions.microsoft.com> wrote in message
>> news:26C8167C-A0D1-4D7D-9305-561F37555839@microsoft.com...
>> > Stephany,
>> >
>> > I gave some background information to the problem to put it in context.
>> > I
>> > belive I stated the problem quite clearly: "What I want to do is write
>> > a
>> > routine within the MouseWheel event of the MDI parent to scroll the
>> > window
>> > so
>> > that the lower half of the child form comes into view."
>> >
>> > Perhaps it is not phrased as well as it could have been, but
>> > nevertheless,
>> > I
>> > need help in writing a routine to scroll the parent window when the
>> > MouseWheel event fires. The MouseWheel event exposes a MouseEventArgs
>> > object
>> > that I can use to detect how much the user has moved the wheel, but how
>> > do
>> > I
>> > then scroll the window in response to this? The form does not expose
>> > Scroll
>> > method.
>> >
>> > Regards,
>> >
>> > James
>> >
>> >
>> >
>> > "Stephany Young" wrote:
>> >
>> >> Then I suggest that you rephrase your problem and actually ask for
>> >> some
>> >> help.
>> >>
>> >> All your original post did was make 2 very vague statements.
>> >>
>> >>
>> >> "James" <Ja***@discussions.microsoft.com> wrote in message
>> >> news:E8A2A143-F834-4545-8386-E9C699D629FB@microsoft.com...
>> >> >I can't figure how to do it, which is why I have posted it here. I
>> >> >was
>> >> >rather
>> >> > hoping you would tell me...
>> >> >
>> >> > "Stephany Young" wrote:
>> >> >
>> >> >> Post it here when you've done it. I'm sure that others will be
>> >> >> interested.
>> >> >>
>> >> >>
>> >> >> "James" <Ja***@discussions.microsoft.com> wrote in message
>> >> >> news:6B4E0B42-1A30-491C-8B1C-1FC7F1842640@microsoft.com...
>> >> >> > Hi,
>> >> >> >
>> >> >> > I have a Windows Forms application which uses multiple child
>> >> >> > forms
>> >> >> > (MDI
>> >> >> > interface).
>> >> >> >
>> >> >> > The height of one of the child forms is larger than the height of
>> >> >> > the
>> >> >> > MDI
>> >> >> > client area, so when this form is visible, the vertical scroll
>> >> >> > bar
>> >> >> > of
>> >> >> > the
>> >> >> > MDI
>> >> >> > parent appears automatically.
>> >> >> >
>> >> >> > What I want to do is write a routine within the MouseWheel event
>> >> >> > of
>> >> >> > the
>> >> >> > MDI
>> >> >> > parent to scroll the window so that the lower half of the child
>> >> >> > form
>> >> >> > comes
>> >> >> > into view. At the moment, my users have to click the scroll bar
>> >> >> > to
>> >> >> > do
>> >> >> > this.
>> >> >> >
>> >> >> > Regards,
>> >> >> >
>> >> >> > James
>> >> >>
>> >> >>
>> >> >>
>> >>
>> >>
>> >>
>>
>>
>>