Access vba code to pass variable date via SendKeys

moorecurls

New Member
Joined
Oct 28, 2022
Messages
4
Office Version
  1. 365
Platform
  1. Windows
I have to use SendKeys to fill in a pdf form. I'm using the below code that is working but not correctly each time:
Dim localDate As Date

localDate = Date 'is current system date

'Fill in fields
SendKeys localDate 'put extra tabs here if needed

The variable localDate is today's date 6/7/2024 in both locations but when it enters into the pdf it is only printing 6/7/2. Any suggestions on how to get this to work each time with the full date? The pdf field needs the date in the MM/DD/YY format. So maybe I need to format the variable. Any suggestions on how to do this? Thanks.
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Format it correctly as a string, with the Format() function?
Is the destination textbox big enough to show all of the date?
 
Upvote 0
The below code is working correctly:
'Get today's date
Dim localDate As String

localDate = Format(Date, "MM/DD/YYYY") 'is current system date

'Fill in fields
SendKeys localDate 'put extra tabs here if needed
Thanks for your assistance.
 
Upvote 0

Forum statistics

Threads
1,223,882
Messages
6,175,165
Members
452,615
Latest member
bogeys2birdies

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top