sendkey

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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