External Object

B

B

I have opened two database. I would like to edit an unbound textbox item in a
Form in 1st database from 2nd database. I don't know how to call object in
other database. I have tried the follwoing but it doesn't work.

dim appAccess as New Access.application

set appAccess = CurrentDatabase(1)
appAccess.Froms!Form_name.txtcontrol_name
 
Top