multiple instanceform problem

  • Thread starter Thread starter asset number via AccessMonster.com
  • Start date Start date
A

asset number via AccessMonster.com

how can i get the value of a field in my main form and automaticall display
it to the same field in my multiple instance form?

i have a form(main form) and i have this field named purchased date now i
have a button named new that when click will call a multiple instance form.
Now what i want to do is that when i type a date on my purchased date and
click the new button to call my instance form the date i have typed in my
main form will also display automatically in my multiple instance form.Thanks
 
asset said:
how can i get the value of a field in my main form and automaticall display
it to the same field in my multiple instance form?

i have a form(main form) and i have this field named purchased date now i
have a button named new that when click will call a multiple instance form.
Now what i want to do is that when i type a date on my purchased date and
click the new button to call my instance form the date i have typed in my
main form will also display automatically in my multiple instance form.Thanks


How are you managing the multiple instances of the form?

The general idea is trivial:
otherformobject.[purchased date] = Me.[purchased date]

but if you/we don't know how you keep track of the other
form objects, that may not mean much.
 
Back
Top