How to give a default value without lookups?

prabha_friend

Prabhakaran Karuppaih
Local time
Today, 18:03
Joined
Mar 22, 2009
Messages
1,026
If I include that in the datasource, the underlying query becomes an unupdatable one :banghead:
 
give more detail about your question
 
Use the load/before insert event of your form:

private sub form_load()
me.textboxname = value
end sub

private sub form_beforeinsert(cancel as integer)
me.textboxname = value
end sub
 

Users who are viewing this thread

Back
Top Bottom