Hi,
I want to set a date to a DTPicker control and Acces says that the object si write protected or protected for update (it tells me this in german, so I don't know exactly what the message in English is)
MyDTPicker = Date()
or
MyDTPicker.Value = Date()
Both lead to the above behavior.
Thanks in advance for a hint.
Fritz Haubrich - 16 Jan 2005 17:40 GMT
I 've found it!
I'd to do the following:
MyDTPicker.SetFocus
MyDTPicker = Date()
Now it works.