Open my pc calendar page (1 Viewer)

Falcon88

Registered User.
Local time
Today, 15:25
Joined
Nov 4, 2014
Messages
299
What is the code to open system calendar page to put new settings from access database form ?

Note : i use windows 7 .
 

theDBguy

I’m here to help
Staff member
Local time
Today, 05:25
Joined
Oct 29, 2018
Messages
21,454
Try:
Code:
timedate.cpl
 

onur_can

Active member
Local time
Today, 05:25
Joined
Oct 4, 2015
Messages
180
This is the code in ms access vba,
Code:
Shell "rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,0"

You can write this code in the click event of a button in the form.
 

Falcon88

Registered User.
Local time
Today, 15:25
Joined
Nov 4, 2014
Messages
299
This is the code in ms access vba,
Code:
Shell "rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,0"

You can write this code in the click event of a button in the form.
This good (but open date and time settings , not calendar settings format page)
 

theDBguy

I’m here to help
Staff member
Local time
Today, 05:25
Joined
Oct 29, 2018
Messages
21,454
This good (but open date and time settings , not calendar settings format page)
Hi. Can you post a screenshot of the specific window you're looking for? Thanks.
 

theDBguy

I’m here to help
Staff member
Local time
Today, 05:25
Joined
Oct 29, 2018
Messages
21,454
My pc language is other than english.

But i want window of : customizing "format"
Okay, let's try this. How do you get to that window manually? Can you tell us the steps? I can't imagine where it is located (although, I am using Win10).
 

Falcon88

Registered User.
Local time
Today, 15:25
Joined
Nov 4, 2014
Messages
299
Okay, let's try this. How do you get to that window manually? Can you tell us the steps? I can't imagine where it is located (although, I am using Win10).
It is the window of calendar format settings . Like :
Short date : MM/dd/yyyy
Long date : MMMM dd yyyy
 

theDBguy

I’m here to help
Staff member
Local time
Today, 05:25
Joined
Oct 29, 2018
Messages
21,454
It is the window of calendar format settings . Like :
Short date : MM/dd/yyyy
Long date : MMMM dd yyyy
Ah, try using this then.
Code:
intl.cpl
Hope that helps...
 

Falcon88

Registered User.
Local time
Today, 15:25
Joined
Nov 4, 2014
Messages
299
Are you mean :
Code:
Shell "rundll32.exe shell32.dll,Control_RunDLL intl.cpl,,0"
 

Users who are viewing this thread

Top Bottom