'Send Keys' in FP2002?

M

Matthew

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

=}
 
M

Matthew \(newer\)

-----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

=}
 
M

MD WebsUnlimited.com

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" >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Can we 'Send Keys' in FP2002? 4
Passing Array Values to a Sub 4
Send Keys 2
Formating bolded text exclusively. 0
Relationships and Keys 18
Unexpected change in "arrow keys" 1
send Keys problem 6
regarding send keys 0

Top