sendkey

T

Tonn

I want to use the sendkey command in a module to send the content of a field
to an other window. When that field contain an ( or ) or +, I get a Runtime
error. How can I fix this?

Tonn
 
K

kingston via AccessMonster.com

You need to check for these special characters and enclose them in braces {}.
What about just setting the fields equal to each other?

Forms!Form2!TargetControl = Forms!Form1!SourceControl
 
Top