-1

I have two forms, "Info o vlasniku" and "Nova narudzba". When I click on button in form "Info o vlasniku" I want field ID_VU from that form to be set in a combobox called Narudzba.ID_VU in "Nova narudzba" form.

i_n
  • 25
  • 1
  • 8

1 Answers1

1

Use this in your click event:

Forms![Nova narudzba]![Narudzba.ID_VU].Value = Me!ID_VU.Value

Try using control names without spaces and, indeed, without dots.

Gustav
  • 53,498
  • 7
  • 29
  • 55