mloucel
Member
- Local time
- Today, 03:42
- Joined
- Aug 5, 2020
- Messages
- 293
Hello Gurus:
I have an issue with my LOGIC to create a routine where:
The Form is a bound form, that contains already some data.
So when I close the form I need to check 3 dates
If the user decides not to fill the dates is easy to check:
so I know the date(s) where left without a date or has a date.
problem I have is when the user comes back, and then decides to make a change to the date.
What type of code can I use to check both things in the same code?
Ie.. this has to happen for the 3 dates I need to check..
If date is null then just continue
if date old value <> Value on the table then
ask user if is ok the changes.
But
If date is not null then save the new data
I don't know how to check, since the form is bound to database.
Any Ideas will be appreciated.
I have an issue with my LOGIC to create a routine where:
The Form is a bound form, that contains already some data.
So when I close the form I need to check 3 dates
If the user decides not to fill the dates is easy to check:
INI:
IsNull(MyFirstDate)
so I know the date(s) where left without a date or has a date.
problem I have is when the user comes back, and then decides to make a change to the date.
What type of code can I use to check both things in the same code?
Ie.. this has to happen for the 3 dates I need to check..
If date is null then just continue
if date old value <> Value on the table then
ask user if is ok the changes.
But
If date is not null then save the new data
I don't know how to check, since the form is bound to database.
Any Ideas will be appreciated.