NauticalGent
Ignore List Poster Boy
- Local time
- Today, 03:43
- Joined
- Apr 27, 2015
- Messages
- 6,720
Good evening AWF...
I started a thread yesterday: https://www.access-programmers.co.uk/forums/showthread.php?t=291863
And the events are firing as they should...that being said I cant get them to behave the way I want them to.
In a nutshell, I want Access to evaluate each record and force the user to fill in certain fields. To do this is used this code for the Current event:
This ensures the user cannot move to another record if no changes are made and it is working like a charm.
On the BeforeUpdate event I have this:
I borrowed this from an MSDN website when I was at my wits end because my code was not working. Ultimatley, I plan on using the tag property to determine which fields to test for Null.
When I open the form, go to a "bad record" and attempt to leave without populating the fields (ComboBoxs), I get a Runtime Error 2110 "...cant move focus to..."
The debugger has the "Cancel = True: oContr.SetFocus: Exit Sub" highlighted.
I cant believe something as simple as this is so hard...there has to be something simple that I am overlooking.
Any lifelines will be greatly appreciated...
I started a thread yesterday: https://www.access-programmers.co.uk/forums/showthread.php?t=291863
And the events are firing as they should...that being said I cant get them to behave the way I want them to.
In a nutshell, I want Access to evaluate each record and force the user to fill in certain fields. To do this is used this code for the Current event:
Code:
Private Sub Form_Current()
Me.UPD.SetFocus
If IsNull(Me.UPD) Or IsNull(DEPT) Then
Form.Dirty = True
Else
End If
End Sub
This ensures the user cannot move to another record if no changes are made and it is working like a charm.
On the BeforeUpdate event I have this:
Code:
Private Sub Form_BeforeUpdate(Cancel As Integer)
Dim oContr As Control
For Each oContr In Me.Detail.Controls
If IsNull(oContr) = True Then
If MsgBox(oContr.Name & " is empty", vbOKCancel) = vbCancel Then
Cancel = True: oContr.SetFocus: Exit Sub
End If
End If
Next oContr
End Sub
I borrowed this from an MSDN website when I was at my wits end because my code was not working. Ultimatley, I plan on using the tag property to determine which fields to test for Null.
When I open the form, go to a "bad record" and attempt to leave without populating the fields (ComboBoxs), I get a Runtime Error 2110 "...cant move focus to..."
The debugger has the "Cancel = True: oContr.SetFocus: Exit Sub" highlighted.
I cant believe something as simple as this is so hard...there has to be something simple that I am overlooking.
Any lifelines will be greatly appreciated...