Search found 3 matches

by Lyzi
09 Feb 2023, 04:17
Forum: Ask for Help (v1)
Topic: Calculating date xx days forward
Replies: 4
Views: 353

Re: Calculating date xx days forward

Hallo, try: #Requires AutoHotkey v2.0- FutureDate := A_Now FutureDate := DateAdd(FutureDate, 10, "Days") FuturDateFormatted := FormatTime(FutureDate, "Longdate") MsgBox "The date in 10 days will be: `n`n" FuturDateFormatted or: #Requires AutoHotkey v2.0- MsgBox "The date in 10 days will be: `n`n" ....
by Lyzi
08 Feb 2023, 05:40
Forum: Ask for Help (v1)
Topic: Calculating date xx days forward
Replies: 4
Views: 353

Re: Calculating date xx days forward

I did find this script though, is there any tips of how I could rewrite it to just enter the first date and then press ''calculate'' to predict the date 10 days forward, basically remove ''enter date two''. HowLongAutoExec: Gui, SpanCalc:Add, Text, , Enter Date One: Gui, SpanCalc:Add, DateTime, vDat...
by Lyzi
08 Feb 2023, 04:46
Forum: Ask for Help (v1)
Topic: Calculating date xx days forward
Replies: 4
Views: 353

Calculating date xx days forward

Hello! I've been searching for a script that helps me calculate the correct date 10 days forward from todays date. Example: Today is the Wednesday February 08, the script will then automatically tell me the date 10 days forward. I have tried to make a connection to the date on the computer but I hav...

Go to advanced search