From MDB to ADP

  • Thread starter Thread starter Dimitris Nikolakakis
  • Start date Start date
D

Dimitris Nikolakakis

I have a form FOrders and a subform FOrdersTx.

In OnCurrent of FOrders I have:

Me.[ORD-FOrdersTx].Form.Combo6.Requery

In mdb file it works but in adp project I get an error 'Run-time error 2465'

Is there any different way to do it in adp?

Thanks
Dimitris
 
To my knowledge, there is no difference between ADP and MDB on this regard
and to my, your piece of code looks perfectly OK and should work. I use the
same thing many times in my current ADP projects.

However, you don't use the same name for the subform control: it is
[FOrdersTx] or [ORD-FOrdersTx]?

My guess would be that you have used the name of the subform instead of the
name of subform control.
 
Back
Top