I am using the custom dialog example but when the appointment record gets written to the table...it does not fill the ownerkey field. How do i fix this?
1. Declare a form-level variable of type Infragistics.Win.Owner2. Add code in ShowHelper method to assign this.initialAppointment.Owner to that variable.3. Add code in Save method to assign the value of the Owner form-level variable to the Owner property of the 'appointment' stack variable.
In my custome dialog form I import the namespace Infragistics.Win, however .Owner does not appear.
I got it to work.
Created variable using: Private _StrOwner As String
In Show method placed: _StrOwner = initialAppointment.Owner.Key
In save method added: appointment.OwnerKey = _StrOwner