StrataFrame Forum

MoveAbsolute not calling Navigated Event

http://forum.strataframe.net/Topic23512.aspx

By Chris Diesel - 6/15/2009

As the title says, I'm having problems when calling MoveAbsolute() raising the Navigated Event.  I'm using the 1.6.6.9.

I have a business object on a form with a Navigated event and a User Control on the form that has a business object property set to the business object on the form.  When the user control calls MoveAbsolute (which returns true), the Navigated method on the form is not being called.  Any ideas what I'm doing wrong?

By Trent L. Taylor - 6/16/2009

That method will not call the Navigated event. You need to call the navigate(...) method if you want the navigate event to fire. There is a Navigate(Absolute) parameter that will allow you do to an absolute record. Just FYI, if you look in the docs you can get more detail, but the Move methods do not refresh any bound controls and calling the Navigate event would refresh bounds controls.
By Chris Diesel - 6/16/2009

Gotcha!  Thanks!