Hey Gang!
I am sure thi is simple and will find answers here. Can't do so as of now, but will when I get home>
It looks like below code is not allowing me to set it so Contact date canot be lesser than open date:
[CODE=VB]
ElseIf Me.TodayDate.Va lue > Me.ContactDate. Value Then 'Let's do some checking
MsgBox "You cannot enter Contact date prior to Open date, please modify to continue...", vbInformation + vbOKOnly, _
"Data Central"
Me.cboContactDa te.SetFocus
Me.Phoned = False 'report false because user must add contact info...
Me.Phoned.Visib le = True 'report true because user must add contact info...
[/CODE]
Even though the date is 01/09/2008 for both field, I still get my pop up 'cannot enter Contact date prior to Open date' what do you see happenning.
See you in a bit, still testing it, will post my findings also:-)
Thanks!
I am sure thi is simple and will find answers here. Can't do so as of now, but will when I get home>
It looks like below code is not allowing me to set it so Contact date canot be lesser than open date:
[CODE=VB]
ElseIf Me.TodayDate.Va lue > Me.ContactDate. Value Then 'Let's do some checking
MsgBox "You cannot enter Contact date prior to Open date, please modify to continue...", vbInformation + vbOKOnly, _
"Data Central"
Me.cboContactDa te.SetFocus
Me.Phoned = False 'report false because user must add contact info...
Me.Phoned.Visib le = True 'report true because user must add contact info...
[/CODE]
Even though the date is 01/09/2008 for both field, I still get my pop up 'cannot enter Contact date prior to Open date' what do you see happenning.
See you in a bit, still testing it, will post my findings also:-)
Thanks!
Comment