Hi
I have a form with pageframe,pages with many tabs. I am using tooltips to
display more information about each tab. The problem is I must click on the
form (anywhere) before the tooltips will be visible. I want them to be
visible without clicking.
Please help and be specific as to where to put code.
Thanks
Sherry

Re: ?form activation? by TonySper

TonySper
Fri Apr 18 16:31:41 CDT 2008

I use the Init Event for each page to run the code each time a page tab is
selected.
TonySper

"sherry" <sherry@discussions.microsoft.com> wrote in message
news:4DCA5899-7FAA-4837-B67C-D1AE09C18FFB@microsoft.com...
> Hi
> I have a form with pageframe,pages with many tabs. I am using tooltips to
> display more information about each tab. The problem is I must click on
> the
> form (anywhere) before the tooltips will be visible. I want them to be
> visible without clicking.
> Please help and be specific as to where to put code.
> Thanks
> Sherry



Re: ?form activation? by Tom

Tom
Fri Apr 18 17:14:11 CDT 2008

Off the top of my head I would try and use the pageframes MouseMove and
OBJTOCLIENT( ). You will also have to figure out how to display the tooltip
I do not think you can do that through code in VFP.

Another thing to try is activating the form when the mouse is moved over it
it it is not already active. This way the user does not have to click on
it.

Good Luck
Tom

"sherry" <sherry@discussions.microsoft.com> wrote in message
news:4DCA5899-7FAA-4837-B67C-D1AE09C18FFB@microsoft.com...
> Hi
> I have a form with pageframe,pages with many tabs. I am using tooltips to
> display more information about each tab. The problem is I must click on
> the
> form (anywhere) before the tooltips will be visible. I want them to be
> visible without clicking.
> Please help and be specific as to where to put code.
> Thanks
> Sherry



Re: ?form activation? by sherry

sherry
Fri Apr 18 21:44:00 CDT 2008

Hi
P.S. Is there a way to view the tooltip differently, like in color or a
different shape?

thanks
Sherry

"Tom Libby" wrote:

> Off the top of my head I would try and use the pageframes MouseMove and
> OBJTOCLIENT( ). You will also have to figure out how to display the tooltip
> I do not think you can do that through code in VFP.
>
> Another thing to try is activating the form when the mouse is moved over it
> it it is not already active. This way the user does not have to click on
> it.
>
> Good Luck
> Tom
>
> "sherry" <sherry@discussions.microsoft.com> wrote in message
> news:4DCA5899-7FAA-4837-B67C-D1AE09C18FFB@microsoft.com...
> > Hi
> > I have a form with pageframe,pages with many tabs. I am using tooltips to
> > display more information about each tab. The problem is I must click on
> > the
> > form (anywhere) before the tooltips will be visible. I want them to be
> > visible without clicking.
> > Please help and be specific as to where to put code.
> > Thanks
> > Sherry
>
>
>

Re: ?form activation? by RGBean

RGBean
Sat Apr 19 11:43:53 CDT 2008

Sherry,
One solution might be an add-on. Go to the UT download area
(http://www.universalthread.com/wconnect/wc.dll?) and put 'anFoxGUI'
(without the quotes) in the title box and hit Enter.

Rick

"sherry" <sherry@discussions.microsoft.com> wrote in message
news:29C516D9-2CAE-432E-BDAF-F8657164C045@microsoft.com...
> Hi
> P.S. Is there a way to view the tooltip differently, like in color or a
> different shape?
>
> thanks
> Sherry
>
> "Tom Libby" wrote:
>
>> Off the top of my head I would try and use the pageframes MouseMove and
>> OBJTOCLIENT( ). You will also have to figure out how to display the
>> tooltip
>> I do not think you can do that through code in VFP.
>>
>> Another thing to try is activating the form when the mouse is moved over
>> it
>> it it is not already active. This way the user does not have to click on
>> it.
>>
>> Good Luck
>> Tom
>>
>> "sherry" <sherry@discussions.microsoft.com> wrote in message
>> news:4DCA5899-7FAA-4837-B67C-D1AE09C18FFB@microsoft.com...
>> > Hi
>> > I have a form with pageframe,pages with many tabs. I am using tooltips
>> > to
>> > display more information about each tab. The problem is I must click
>> > on
>> > the
>> > form (anywhere) before the tooltips will be visible. I want them to
>> > be
>> > visible without clicking.
>> > Please help and be specific as to where to put code.
>> > Thanks
>> > Sherry
>>
>>
>>


Re: ?form activation? by TonySper

TonySper
Sat Apr 19 12:21:59 CDT 2008

Sherry,
I may not be understanding what you want but I have a form with 7 page taps
and as I move the Mouse over each tab I display a text that says what the
tab will do. I have set the SHOW TIPS on the form to .T. and on each page
tab I have the text written at the TOOLTIPTEXT. Works OK here using VFP8.
TonySper

"sherry" <sherry@discussions.microsoft.com> wrote in message
news:4DCA5899-7FAA-4837-B67C-D1AE09C18FFB@microsoft.com...
> Hi
> I have a form with pageframe,pages with many tabs. I am using tooltips to
> display more information about each tab. The problem is I must click on
> the
> form (anywhere) before the tooltips will be visible. I want them to be
> visible without clicking.
> Please help and be specific as to where to put code.
> Thanks
> Sherry



Re: ?form activation? by sherry

sherry
Sun Apr 20 08:06:00 CDT 2008

Hi

This is what I have done and it works,but the user must first click
somewhere on the form for this to work. Once they click the tooltips work
great. I have tried above mentioned mouseover and works on a test form, but
have not been able to try it on original form. (also if running from within
fox in project creation it works without the click but after building the
click is needed.)

thanks
Sherry

"TonySper" wrote:

> Sherry,
> I may not be understanding what you want but I have a form with 7 page taps
> and as I move the Mouse over each tab I display a text that says what the
> tab will do. I have set the SHOW TIPS on the form to .T. and on each page
> tab I have the text written at the TOOLTIPTEXT. Works OK here using VFP8.
> TonySper
>
> "sherry" <sherry@discussions.microsoft.com> wrote in message
> news:4DCA5899-7FAA-4837-B67C-D1AE09C18FFB@microsoft.com...
> > Hi
> > I have a form with pageframe,pages with many tabs. I am using tooltips to
> > display more information about each tab. The problem is I must click on
> > the
> > form (anywhere) before the tooltips will be visible. I want them to be
> > visible without clicking.
> > Please help and be specific as to where to put code.
> > Thanks
> > Sherry
>
>
>

Re: ?form activation? by TonySper

TonySper
Sun Apr 20 12:24:10 CDT 2008

Sherry,
I do not have that problem even when I make an exe file and run it. I do not
bring up this form directly but call it from another form (My Main Menu)
which calls up this form that has 7 page tabs on it. When this form comes up
I do not have to mouse click anything. Just move the mouse over the tab and
the tool tip pops up. Do you call your form from another form or from your
program??
TonySPer

"sherry" <sherry@discussions.microsoft.com> wrote in message
news:03AD4ACC-5C20-4E02-9768-6BC34245B655@microsoft.com...
> Hi
>
> This is what I have done and it works,but the user must first click
> somewhere on the form for this to work. Once they click the tooltips work
> great. I have tried above mentioned mouseover and works on a test form,
> but
> have not been able to try it on original form. (also if running from
> within
> fox in project creation it works without the click but after building the
> click is needed.)
>
> thanks
> Sherry
>
> "TonySper" wrote:
>
>> Sherry,
>> I may not be understanding what you want but I have a form with 7 page
>> taps
>> and as I move the Mouse over each tab I display a text that says what the
>> tab will do. I have set the SHOW TIPS on the form to .T. and on each page
>> tab I have the text written at the TOOLTIPTEXT. Works OK here using VFP8.
>> TonySper
>>
>> "sherry" <sherry@discussions.microsoft.com> wrote in message
>> news:4DCA5899-7FAA-4837-B67C-D1AE09C18FFB@microsoft.com...
>> > Hi
>> > I have a form with pageframe,pages with many tabs. I am using tooltips
>> > to
>> > display more information about each tab. The problem is I must click
>> > on
>> > the
>> > form (anywhere) before the tooltips will be visible. I want them to
>> > be
>> > visible without clicking.
>> > Please help and be specific as to where to put code.
>> > Thanks
>> > Sherry
>>
>>
>>



Re: ?form activation? by sherry

sherry
Sun Apr 20 17:20:01 CDT 2008

Tony
I call it from a start prg
do form ratebook.scx
read events



"TonySper" wrote:

> Sherry,
> I do not have that problem even when I make an exe file and run it. I do not
> bring up this form directly but call it from another form (My Main Menu)
> which calls up this form that has 7 page tabs on it. When this form comes up
> I do not have to mouse click anything. Just move the mouse over the tab and
> the tool tip pops up. Do you call your form from another form or from your
> program??
> TonySPer
>
> "sherry" <sherry@discussions.microsoft.com> wrote in message
> news:03AD4ACC-5C20-4E02-9768-6BC34245B655@microsoft.com...
> > Hi
> >
> > This is what I have done and it works,but the user must first click
> > somewhere on the form for this to work. Once they click the tooltips work
> > great. I have tried above mentioned mouseover and works on a test form,
> > but
> > have not been able to try it on original form. (also if running from
> > within
> > fox in project creation it works without the click but after building the
> > click is needed.)
> >
> > thanks
> > Sherry
> >
> > "TonySper" wrote:
> >
> >> Sherry,
> >> I may not be understanding what you want but I have a form with 7 page
> >> taps
> >> and as I move the Mouse over each tab I display a text that says what the
> >> tab will do. I have set the SHOW TIPS on the form to .T. and on each page
> >> tab I have the text written at the TOOLTIPTEXT. Works OK here using VFP8.
> >> TonySper
> >>
> >> "sherry" <sherry@discussions.microsoft.com> wrote in message
> >> news:4DCA5899-7FAA-4837-B67C-D1AE09C18FFB@microsoft.com...
> >> > Hi
> >> > I have a form with pageframe,pages with many tabs. I am using tooltips
> >> > to
> >> > display more information about each tab. The problem is I must click
> >> > on
> >> > the
> >> > form (anywhere) before the tooltips will be visible. I want them to
> >> > be
> >> > visible without clicking.
> >> > Please help and be specific as to where to put code.
> >> > Thanks
> >> > Sherry
> >>
> >>
> >>
>
>
>

Re: ?form activation? by sherry

sherry
Sun Apr 20 17:22:00 CDT 2008

p.s.
I have set enginebehavior to 70. Don't know if this makes a difference.
thanks

"TonySper" wrote:

> Sherry,
> I do not have that problem even when I make an exe file and run it. I do not
> bring up this form directly but call it from another form (My Main Menu)
> which calls up this form that has 7 page tabs on it. When this form comes up
> I do not have to mouse click anything. Just move the mouse over the tab and
> the tool tip pops up. Do you call your form from another form or from your
> program??
> TonySPer
>
> "sherry" <sherry@discussions.microsoft.com> wrote in message
> news:03AD4ACC-5C20-4E02-9768-6BC34245B655@microsoft.com...
> > Hi
> >
> > This is what I have done and it works,but the user must first click
> > somewhere on the form for this to work. Once they click the tooltips work
> > great. I have tried above mentioned mouseover and works on a test form,
> > but
> > have not been able to try it on original form. (also if running from
> > within
> > fox in project creation it works without the click but after building the
> > click is needed.)
> >
> > thanks
> > Sherry
> >
> > "TonySper" wrote:
> >
> >> Sherry,
> >> I may not be understanding what you want but I have a form with 7 page
> >> taps
> >> and as I move the Mouse over each tab I display a text that says what the
> >> tab will do. I have set the SHOW TIPS on the form to .T. and on each page
> >> tab I have the text written at the TOOLTIPTEXT. Works OK here using VFP8.
> >> TonySper
> >>
> >> "sherry" <sherry@discussions.microsoft.com> wrote in message
> >> news:4DCA5899-7FAA-4837-B67C-D1AE09C18FFB@microsoft.com...
> >> > Hi
> >> > I have a form with pageframe,pages with many tabs. I am using tooltips
> >> > to
> >> > display more information about each tab. The problem is I must click
> >> > on
> >> > the
> >> > form (anywhere) before the tooltips will be visible. I want them to
> >> > be
> >> > visible without clicking.
> >> > Please help and be specific as to where to put code.
> >> > Thanks
> >> > Sherry
> >>
> >>
> >>
>
>
>

Re: ?form activation? by TonySper

TonySper
Sun Apr 20 22:27:05 CDT 2008

Calling it from a program may be the problem as you have not use the mouse
yet. Try using a form with a command button to call your page form. I think
once you use the mouse the tool tip may work for you without having to click
the mouse on the page form. At least that what works for me.
Tony

"sherry" <sherry@discussions.microsoft.com> wrote in message
news:B0247493-8B37-4144-9B0E-EC092DD7033B@microsoft.com...
> Tony
> I call it from a start prg
> do form ratebook.scx
> read events
>
>
>
> "TonySper" wrote:
>
>> Sherry,
>> I do not have that problem even when I make an exe file and run it. I do
>> not
>> bring up this form directly but call it from another form (My Main Menu)
>> which calls up this form that has 7 page tabs on it. When this form comes
>> up
>> I do not have to mouse click anything. Just move the mouse over the tab
>> and
>> the tool tip pops up. Do you call your form from another form or from
>> your
>> program??
>> TonySPer
>>
>> "sherry" <sherry@discussions.microsoft.com> wrote in message
>> news:03AD4ACC-5C20-4E02-9768-6BC34245B655@microsoft.com...
>> > Hi
>> >
>> > This is what I have done and it works,but the user must first click
>> > somewhere on the form for this to work. Once they click the tooltips
>> > work
>> > great. I have tried above mentioned mouseover and works on a test
>> > form,
>> > but
>> > have not been able to try it on original form. (also if running from
>> > within
>> > fox in project creation it works without the click but after building
>> > the
>> > click is needed.)
>> >
>> > thanks
>> > Sherry
>> >
>> > "TonySper" wrote:
>> >
>> >> Sherry,
>> >> I may not be understanding what you want but I have a form with 7 page
>> >> taps
>> >> and as I move the Mouse over each tab I display a text that says what
>> >> the
>> >> tab will do. I have set the SHOW TIPS on the form to .T. and on each
>> >> page
>> >> tab I have the text written at the TOOLTIPTEXT. Works OK here using
>> >> VFP8.
>> >> TonySper
>> >>
>> >> "sherry" <sherry@discussions.microsoft.com> wrote in message
>> >> news:4DCA5899-7FAA-4837-B67C-D1AE09C18FFB@microsoft.com...
>> >> > Hi
>> >> > I have a form with pageframe,pages with many tabs. I am using
>> >> > tooltips
>> >> > to
>> >> > display more information about each tab. The problem is I must
>> >> > click
>> >> > on
>> >> > the
>> >> > form (anywhere) before the tooltips will be visible. I want them
>> >> > to
>> >> > be
>> >> > visible without clicking.
>> >> > Please help and be specific as to where to put code.
>> >> > Thanks
>> >> > Sherry
>> >>
>> >>
>> >>
>>
>>
>>