Well, can we?

When I was coding VB in some MS Office applications, I
learned of the Send Keys feature. I searched for the
subject in FP2002 Help, but found nothing.

In MyDatabase, there are records with a value for
MyVariable. I would like to open a web page, and pass
MyVariable for a user-selected record to its this page's
SearchFuction.asp, but I have had no luck using
Insert>Hyperlink>Parameters to carry MyVariable.

Is this the right idea? Is Send Keys an option in this
case? Is there another (or a better) method?

Thank you for your support,

Matthew

=}

'Send Keys' in FP2002? (More) by Matthew

Matthew
Tue Dec 30 14:07:26 CST 2003


>-----Original Message-----
>Well, can we?
>
>When I was coding VB in some MS Office applications, I
>learned of the Send Keys feature. I searched for the
>subject in FP2002 Help, but found nothing.
>
>In MyDatabase, there are records with a value for
>MyVariable. I would like to open a web page, and pass
>MyVariable for a user-selected record to its this page's
>SearchFuction.asp, but I have had no luck using
>Insert>Hyperlink>Parameters to carry MyVariable.
>
>Is this the right idea? Is Send Keys an option in this
>case? Is there another (or a better) method?
>
>Thank you for your support,
>
>Matthew
>
>=}
>.
What I have so far will carry MyVariable to the target
page, and I can get it into the Text Box, where the user
should enter the variable to search. How can I send a
command to simulate the Click of a Control?

<input type="image" name="CheckLicense"
SRC="../images/checklicense.gif" ALT="Check License">

That's the control I want to activate.

Thanks for all your sweat,

Matthew

=}


Re: 'Send Keys' in FP2002? (More) by MD

MD
Wed Dec 31 07:51:08 CST 2003

Hi Matthew,

I believe you're confusing client side scripting with VBA programming, i.e.,
creating macros.

To active the image use the onclick event handler. I've assumed that this
input tag is with a form.

<input type="image" onclick="submit();" src="myimage.jpg" >

--
Mike -- FrontPage MVP '97-'02
http://www.websunlimited.com
FrontPage Add-ins Since '97 2003 / 2002 / 2000 Compatible
----------------------------------------------------------------------------
--------------------
If you think I'm doing a good job, let MS know at mvpga@microsoft.com


"Matthew (newer)" <anonymous@discussions.microsoft.com> wrote in message
news:07a601c3cf10$8b8bb0c0$a001280a@phx.gbl...
>
> >-----Original Message-----
> >Well, can we?
> >
> >When I was coding VB in some MS Office applications, I
> >learned of the Send Keys feature. I searched for the
> >subject in FP2002 Help, but found nothing.
> >
> >In MyDatabase, there are records with a value for
> >MyVariable. I would like to open a web page, and pass
> >MyVariable for a user-selected record to its this page's
> >SearchFuction.asp, but I have had no luck using
> >Insert>Hyperlink>Parameters to carry MyVariable.
> >
> >Is this the right idea? Is Send Keys an option in this
> >case? Is there another (or a better) method?
> >
> >Thank you for your support,
> >
> >Matthew
> >
> >=}
> >.
> What I have so far will carry MyVariable to the target
> page, and I can get it into the Text Box, where the user
> should enter the variable to search. How can I send a
> command to simulate the Click of a Control?
>
> <input type="image" name="CheckLicense"
> SRC="../images/checklicense.gif" ALT="Check License">
>
> That's the control I want to activate.
>
> Thanks for all your sweat,
>
> Matthew
>
> =}
>