S SalmanZeiad Member Local time Today, 11:00 Joined Oct 30, 2017 Messages 112 Apr 29, 2021 #1 Display text for a day, and on the next day, set a new value that appears for an entire day, such as the dollar value for today
Display text for a day, and on the next day, set a new value that appears for an entire day, such as the dollar value for today
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 16:00 Joined May 7, 2009 Messages 20,339 Apr 29, 2021 #2 for today's day: Format$(Date(),"dddd") next day: Format$(Date() + 1,"dddd") for exchange rate: import Currency rates via API | Access World Forums (access-programmers.co.uk)
for today's day: Format$(Date(),"dddd") next day: Format$(Date() + 1,"dddd") for exchange rate: import Currency rates via API | Access World Forums (access-programmers.co.uk)
Mike Krailo Well-known member Local time Today, 04:00 Joined Mar 28, 2020 Messages 1,688 Apr 29, 2021 #3 Maybe use the on timer event for your code to update the text box. Set the timer interval to 3600000 for updating every hour. If the source of your dollar value changes every 24 hours, then this will update it within one hour of the change.
Maybe use the on timer event for your code to update the text box. Set the timer interval to 3600000 for updating every hour. If the source of your dollar value changes every 24 hours, then this will update it within one hour of the change.
S SalmanZeiad Member Local time Today, 11:00 Joined Oct 30, 2017 Messages 112 Apr 29, 2021 #4 arnelgp said: for today's day: Format$(Date(),"dddd") next day: Format$(Date() + 1,"dddd") for exchange rate: import Currency rates via API | Access World Forums (access-programmers.co.uk) Click to expand... help me how to do that @arnelgp Attachments currency.accdb currency.accdb 436 KB · Views: 131
arnelgp said: for today's day: Format$(Date(),"dddd") next day: Format$(Date() + 1,"dddd") for exchange rate: import Currency rates via API | Access World Forums (access-programmers.co.uk) Click to expand... help me how to do that @arnelgp
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 16:00 Joined May 7, 2009 Messages 20,339 Apr 29, 2021 #5 try my Exchange Rate. Attachments ExchangeRate.zip ExchangeRate.zip 63.5 KB · Views: 126
S SalmanZeiad Member Local time Today, 11:00 Joined Oct 30, 2017 Messages 112 Apr 29, 2021 #6 arnelgp said: try my Exchange Rate. Click to expand... Thank you very much. It worked well for me
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 16:00 Joined May 7, 2009 Messages 20,339 Apr 29, 2021 #7 goodluck
Mike Krailo Well-known member Local time Today, 04:00 Joined Mar 28, 2020 Messages 1,688 Apr 29, 2021 #8 That's a nice chunk of code for exchange rates Arnel. Thanks for posting that.