I'm using a split form with the ID field's On Click to open an editing form to the same record using the following in the On Load of the editing form:
Problem is I'm requirying the underlying form in the On Close of the editing form using:
The cursor end sup on the first row's ID field taking away the hyperlink hand even though I'm setting focus to another control.
Seems whenever I requery this way the focus wants to stay on the id field which is the only enabled field on the form.
Any idea how I can retain the hyperlink hand on the ID field after requerying the form in this manner?
I had problems explaining this so if anyone doesn't get it I don't blame them.
James
Code:
On Error GoTo Form_Load_Error
If Not IsNull(Me.OpenArgs) Then
With Me.RecordsetClone
.FindFirst "ReminderID=" & Me.OpenArgs
If Not .NoMatch Then
Me.Bookmark = .Bookmark
End If
End With
End If
Me.Reminder.SetFocus
On Error GoTo 0
Exit Sub
Form_Load_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure Form_Load of VBA Document Form_frmRemindersEditEdit"
Problem is I'm requirying the underlying form in the On Close of the editing form using:
Code:
Forms!frmMyForm.Requery
Forms!MyForm!cmdClose.SetFocus
The cursor end sup on the first row's ID field taking away the hyperlink hand even though I'm setting focus to another control.
Seems whenever I requery this way the focus wants to stay on the id field which is the only enabled field on the form.
Any idea how I can retain the hyperlink hand on the ID field after requerying the form in this manner?
I had problems explaining this so if anyone doesn't get it I don't blame them.
James