AfterUpdate Question!

B

Bob V

I want to add this to my code , Ony enter date if [DateCheck] (checkbox)
is -1
Any help would be great..............Thanks Bob

Private Sub tbAdditionCharge_AfterUpdate()
If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
tbDayNo.value = Format(Now, "dd-mmm-yy")

End If
End Sub
 
G

Guest

See if the following AfterUpdate event works for you:
************************************************************
If [DateCheck].Value = True then
If IsNull(tbDayNo.value) or tbDayNo.value = "" Then
tbDayNo.value = Format(Now(),"dd-mmm-yy")
End if
End If
************************************************************
 
J

JK

Hi Bob,

Me.tbDayNo=IIf(Me.DateCheck And IsNull(tbDayNo), _
Format(Date,"dd/mm/yy"),tbDayNo)

Regards
Jacob



|
| I want to add this to my code , Ony enter date if [DateCheck] (checkbox)
| is -1
| Any help would be great..............Thanks Bob
|
| Private Sub tbAdditionCharge_AfterUpdate()
| If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| tbDayNo.value = Format(Now, "dd-mmm-yy")
|
| End If
| End Sub
|
|
 
B

Bob V

Sorry Guys, gave you the wrong AfterUpdate, This afterUpdate works from a
shortcut to enter in Additional Charges...Thanks for any Help....Bob

Private Sub cbChargeID_AfterUpdate()
If cbChargeID.Text = "" Then
Exit Sub
End If
Dim recAdditionalCharges As New ADODB.Recordset
recAdditionalCharges.Open "SELECT * FROM tblAdditionalCharges WHERE
ChargeID LIKE '" & cbChargeID.Text & "'", CurrentProject.Connection,
adOpenDynamic, adLockOptimistic
If recAdditionalCharges.EOF = True And recAdditionalCharges.BOF = True
Then
Exit Sub
End If
tbDayNo.value = Format(Now, "dd-mmm-yy")
tbAdditionCharge.value =
recAdditionalCharges.Fields("ChargeDescription")
tbAdditionChargeAmount.value =
recAdditionalCharges.Fields("ChargeAmount")
recAdditionalCharges.Close
Set recAdditionalCharges = Nothing

End Sub
 
B

Bob V

I am getting my check box [DateFlag] to show the correct 0 and -1 when I
enter a record on my continuous form but the codes are not stopping the date
from being entered, when I close the form and open it they all turn to
zero's but that should not matter because its only when I enter a new record
that the date is not to enter, any thoughts ................Regards Bob

Private Sub tbAdditionCharge_AfterUpdate()
Me.tbDayNo = IIf(Me.DateFlag And IsNull(tbDayNo), _
Format(Date, "dd/mm/yy"), tbDayNo)

'If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
'tbDayNo.value = Format(Now, "dd-mmm-yy")

End Sub


Bob V said:
Sorry Guys, gave you the wrong AfterUpdate, This afterUpdate works from a
shortcut to enter in Additional Charges...Thanks for any Help....Bob

Private Sub cbChargeID_AfterUpdate()
If cbChargeID.Text = "" Then
Exit Sub
End If
Dim recAdditionalCharges As New ADODB.Recordset
recAdditionalCharges.Open "SELECT * FROM tblAdditionalCharges WHERE
ChargeID LIKE '" & cbChargeID.Text & "'", CurrentProject.Connection,
adOpenDynamic, adLockOptimistic
If recAdditionalCharges.EOF = True And recAdditionalCharges.BOF = True
Then
Exit Sub
End If
tbDayNo.value = Format(Now, "dd-mmm-yy")
tbAdditionCharge.value =
recAdditionalCharges.Fields("ChargeDescription")
tbAdditionChargeAmount.value =
recAdditionalCharges.Fields("ChargeAmount")
recAdditionalCharges.Close
Set recAdditionalCharges = Nothing

End Sub

JK said:
Hi Bob,

Me.tbDayNo=IIf(Me.DateCheck And IsNull(tbDayNo), _
Format(Date,"dd/mm/yy"),tbDayNo)

Regards
Jacob



|
| I want to add this to my code , Ony enter date if [DateCheck]
(checkbox)
| is -1
| Any help would be great..............Thanks Bob
|
| Private Sub tbAdditionCharge_AfterUpdate()
| If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| tbDayNo.value = Format(Now, "dd-mmm-yy")
|
| End If
| End Sub
|
|
 
J

JK

Hi Bob,

If you want to disable a field when you are in a new record, use the
OnCurrent event:

Me.tbDayNo.Enabled=IIf(Me.Form.NewRecrod,False,True)

Regards/Jacob



|I am getting my check box [DateFlag] to show the correct 0 and -1 when I
| enter a record on my continuous form but the codes are not stopping the
date
| from being entered, when I close the form and open it they all turn to
| zero's but that should not matter because its only when I enter a new
record
| that the date is not to enter, any thoughts ................Regards Bob
|
| Private Sub tbAdditionCharge_AfterUpdate()
| Me.tbDayNo = IIf(Me.DateFlag And IsNull(tbDayNo), _
| Format(Date, "dd/mm/yy"), tbDayNo)
|
| 'If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| 'tbDayNo.value = Format(Now, "dd-mmm-yy")
|
| End Sub
|
|
| | > Sorry Guys, gave you the wrong AfterUpdate, This afterUpdate works from
a
| > shortcut to enter in Additional Charges...Thanks for any Help....Bob
| >
| > Private Sub cbChargeID_AfterUpdate()
| > If cbChargeID.Text = "" Then
| > Exit Sub
| > End If
| > Dim recAdditionalCharges As New ADODB.Recordset
| > recAdditionalCharges.Open "SELECT * FROM tblAdditionalCharges WHERE
| > ChargeID LIKE '" & cbChargeID.Text & "'", CurrentProject.Connection,
| > adOpenDynamic, adLockOptimistic
| > If recAdditionalCharges.EOF = True And recAdditionalCharges.BOF =
True
| > Then
| > Exit Sub
| > End If
| > tbDayNo.value = Format(Now, "dd-mmm-yy")
| > tbAdditionCharge.value =
| > recAdditionalCharges.Fields("ChargeDescription")
| > tbAdditionChargeAmount.value =
| > recAdditionalCharges.Fields("ChargeAmount")
| > recAdditionalCharges.Close
| > Set recAdditionalCharges = Nothing
| >
| > End Sub
| >
| > | >>
| >>
| >> Hi Bob,
| >>
| >> Me.tbDayNo=IIf(Me.DateCheck And IsNull(tbDayNo), _
| >> Format(Date,"dd/mm/yy"),tbDayNo)
| >>
| >> Regards
| >> Jacob
| >>
| >>
| >>
| >> | >> |
| >> | I want to add this to my code , Ony enter date if [DateCheck]
| >> (checkbox)
| >> | is -1
| >> | Any help would be great..............Thanks Bob
| >> |
| >> | Private Sub tbAdditionCharge_AfterUpdate()
| >> | If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| >> | tbDayNo.value = Format(Now, "dd-mmm-yy")
| >> |
| >> | End If
| >> | End Sub
| >> |
| >> |
| >>
| >>
| >
| >
|
|
 
B

Bob V

Got It :) Worked it out Brilliant Thanks Guys ( JK that Horse flue Virus not
good for NSW!)
Private Sub cbChargeID_AfterUpdate()
If cbChargeID.Text = "" Then
Exit Sub
End If
Dim recAdditionalCharges As New ADODB.Recordset
recAdditionalCharges.Open "SELECT * FROM tblAdditionalCharges WHERE
ChargeID LIKE '" & cbChargeID.Text & "'", CurrentProject.Connection,
adOpenDynamic, adLockOptimistic
If recAdditionalCharges.EOF = True And recAdditionalCharges.BOF = True
Then
Exit Sub
End If

tbAdditionCharge.value =
recAdditionalCharges.Fields("ChargeDescription")
tbAdditionChargeAmount.value =
recAdditionalCharges.Fields("ChargeAmount")
tbDateFlag.value = recAdditionalCharges.Fields("DateFlag")
Me.tbDayNo = IIf(Me.DateFlag And IsNull(tbDayNo), _
Format(Date, "dd/mm/yy"), tbDayNo)
recAdditionalCharges.Close
Set recAdditionalCharges = Nothing

End Sub

JK said:
Hi Bob,

If you want to disable a field when you are in a new record, use the
OnCurrent event:

Me.tbDayNo.Enabled=IIf(Me.Form.NewRecrod,False,True)

Regards/Jacob



|I am getting my check box [DateFlag] to show the correct 0 and -1 when I
| enter a record on my continuous form but the codes are not stopping the
date
| from being entered, when I close the form and open it they all turn to
| zero's but that should not matter because its only when I enter a new
record
| that the date is not to enter, any thoughts ................Regards Bob
|
| Private Sub tbAdditionCharge_AfterUpdate()
| Me.tbDayNo = IIf(Me.DateFlag And IsNull(tbDayNo), _
| Format(Date, "dd/mm/yy"), tbDayNo)
|
| 'If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| 'tbDayNo.value = Format(Now, "dd-mmm-yy")
|
| End Sub
|
|
| | > Sorry Guys, gave you the wrong AfterUpdate, This afterUpdate works
from
a
| > shortcut to enter in Additional Charges...Thanks for any Help....Bob
| >
| > Private Sub cbChargeID_AfterUpdate()
| > If cbChargeID.Text = "" Then
| > Exit Sub
| > End If
| > Dim recAdditionalCharges As New ADODB.Recordset
| > recAdditionalCharges.Open "SELECT * FROM tblAdditionalCharges WHERE
| > ChargeID LIKE '" & cbChargeID.Text & "'", CurrentProject.Connection,
| > adOpenDynamic, adLockOptimistic
| > If recAdditionalCharges.EOF = True And recAdditionalCharges.BOF =
True
| > Then
| > Exit Sub
| > End If
| > tbDayNo.value = Format(Now, "dd-mmm-yy")
| > tbAdditionCharge.value =
| > recAdditionalCharges.Fields("ChargeDescription")
| > tbAdditionChargeAmount.value =
| > recAdditionalCharges.Fields("ChargeAmount")
| > recAdditionalCharges.Close
| > Set recAdditionalCharges = Nothing
| >
| > End Sub
| >
| > | >>
| >>
| >> Hi Bob,
| >>
| >> Me.tbDayNo=IIf(Me.DateCheck And IsNull(tbDayNo), _
| >> Format(Date,"dd/mm/yy"),tbDayNo)
| >>
| >> Regards
| >> Jacob
| >>
| >>
| >>
| >> | >> |
| >> | I want to add this to my code , Ony enter date if [DateCheck]
| >> (checkbox)
| >> | is -1
| >> | Any help would be great..............Thanks Bob
| >> |
| >> | Private Sub tbAdditionCharge_AfterUpdate()
| >> | If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| >> | tbDayNo.value = Format(Now, "dd-mmm-yy")
| >> |
| >> | End If
| >> | End Sub
| >> |
| >> |
| >>
| >>
| >
| >
|
|
 
B

Bob V

Oops one problem how do I change the code so as 0 shows the Date and -1 dose
not show date..thanks Bob
Could not change IsNull for IsNotNull !

Bob V said:
Got It :) Worked it out Brilliant Thanks Guys ( JK that Horse flue Virus
not good for NSW!)
Private Sub cbChargeID_AfterUpdate()
If cbChargeID.Text = "" Then
Exit Sub
End If
Dim recAdditionalCharges As New ADODB.Recordset
recAdditionalCharges.Open "SELECT * FROM tblAdditionalCharges WHERE
ChargeID LIKE '" & cbChargeID.Text & "'", CurrentProject.Connection,
adOpenDynamic, adLockOptimistic
If recAdditionalCharges.EOF = True And recAdditionalCharges.BOF = True
Then
Exit Sub
End If

tbAdditionCharge.value =
recAdditionalCharges.Fields("ChargeDescription")
tbAdditionChargeAmount.value =
recAdditionalCharges.Fields("ChargeAmount")
tbDateFlag.value = recAdditionalCharges.Fields("DateFlag")
Me.tbDayNo = IIf(Me.DateFlag And IsNull(tbDayNo), _
Format(Date, "dd/mm/yy"), tbDayNo)
recAdditionalCharges.Close
Set recAdditionalCharges = Nothing

End Sub

JK said:
Hi Bob,

If you want to disable a field when you are in a new record, use the
OnCurrent event:

Me.tbDayNo.Enabled=IIf(Me.Form.NewRecrod,False,True)

Regards/Jacob



|I am getting my check box [DateFlag] to show the correct 0 and -1 when I
| enter a record on my continuous form but the codes are not stopping the
date
| from being entered, when I close the form and open it they all turn to
| zero's but that should not matter because its only when I enter a new
record
| that the date is not to enter, any thoughts ................Regards Bob
|
| Private Sub tbAdditionCharge_AfterUpdate()
| Me.tbDayNo = IIf(Me.DateFlag And IsNull(tbDayNo), _
| Format(Date, "dd/mm/yy"), tbDayNo)
|
| 'If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| 'tbDayNo.value = Format(Now, "dd-mmm-yy")
|
| End Sub
|
|
| | > Sorry Guys, gave you the wrong AfterUpdate, This afterUpdate works
from
a
| > shortcut to enter in Additional Charges...Thanks for any Help....Bob
| >
| > Private Sub cbChargeID_AfterUpdate()
| > If cbChargeID.Text = "" Then
| > Exit Sub
| > End If
| > Dim recAdditionalCharges As New ADODB.Recordset
| > recAdditionalCharges.Open "SELECT * FROM tblAdditionalCharges
WHERE
| > ChargeID LIKE '" & cbChargeID.Text & "'", CurrentProject.Connection,
| > adOpenDynamic, adLockOptimistic
| > If recAdditionalCharges.EOF = True And recAdditionalCharges.BOF =
True
| > Then
| > Exit Sub
| > End If
| > tbDayNo.value = Format(Now, "dd-mmm-yy")
| > tbAdditionCharge.value =
| > recAdditionalCharges.Fields("ChargeDescription")
| > tbAdditionChargeAmount.value =
| > recAdditionalCharges.Fields("ChargeAmount")
| > recAdditionalCharges.Close
| > Set recAdditionalCharges = Nothing
| >
| > End Sub
| >
| > | >>
| >>
| >> Hi Bob,
| >>
| >> Me.tbDayNo=IIf(Me.DateCheck And IsNull(tbDayNo), _
| >> Format(Date,"dd/mm/yy"),tbDayNo)
| >>
| >> Regards
| >> Jacob
| >>
| >>
| >>
| >> | >> |
| >> | I want to add this to my code , Ony enter date if [DateCheck]
| >> (checkbox)
| >> | is -1
| >> | Any help would be great..............Thanks Bob
| >> |
| >> | Private Sub tbAdditionCharge_AfterUpdate()
| >> | If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| >> | tbDayNo.value = Format(Now, "dd-mmm-yy")
| >> |
| >> | End If
| >> | End Sub
| >> |
| >> |
| >>
| >>
| >
| >
|
|
 
B

Bob V

Sorry Im an Idiot, I have to flag tbAddionalCharge so as it will enter date
or not when it is Null or Not Null. I will give it a go :)...Thanks Bob
Bob V said:
Oops one problem how do I change the code so as 0 shows the Date and -1
dose not show date..thanks Bob
Could not change IsNull for IsNotNull !

Bob V said:
Got It :) Worked it out Brilliant Thanks Guys ( JK that Horse flue Virus
not good for NSW!)
Private Sub cbChargeID_AfterUpdate()
If cbChargeID.Text = "" Then
Exit Sub
End If
Dim recAdditionalCharges As New ADODB.Recordset
recAdditionalCharges.Open "SELECT * FROM tblAdditionalCharges WHERE
ChargeID LIKE '" & cbChargeID.Text & "'", CurrentProject.Connection,
adOpenDynamic, adLockOptimistic
If recAdditionalCharges.EOF = True And recAdditionalCharges.BOF = True
Then
Exit Sub
End If

tbAdditionCharge.value =
recAdditionalCharges.Fields("ChargeDescription")
tbAdditionChargeAmount.value =
recAdditionalCharges.Fields("ChargeAmount")
tbDateFlag.value = recAdditionalCharges.Fields("DateFlag")
Me.tbDayNo = IIf(Me.DateFlag And IsNull(tbDayNo), _
Format(Date, "dd/mm/yy"), tbDayNo)
recAdditionalCharges.Close
Set recAdditionalCharges = Nothing

End Sub

JK said:
Hi Bob,

If you want to disable a field when you are in a new record, use the
OnCurrent event:

Me.tbDayNo.Enabled=IIf(Me.Form.NewRecrod,False,True)

Regards/Jacob



|I am getting my check box [DateFlag] to show the correct 0 and -1 when
I
| enter a record on my continuous form but the codes are not stopping
the
date
| from being entered, when I close the form and open it they all turn to
| zero's but that should not matter because its only when I enter a new
record
| that the date is not to enter, any thoughts ................Regards
Bob
|
| Private Sub tbAdditionCharge_AfterUpdate()
| Me.tbDayNo = IIf(Me.DateFlag And IsNull(tbDayNo), _
| Format(Date, "dd/mm/yy"), tbDayNo)
|
| 'If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| 'tbDayNo.value = Format(Now, "dd-mmm-yy")
|
| End Sub
|
|
| | > Sorry Guys, gave you the wrong AfterUpdate, This afterUpdate works
from
a
| > shortcut to enter in Additional Charges...Thanks for any Help....Bob
| >
| > Private Sub cbChargeID_AfterUpdate()
| > If cbChargeID.Text = "" Then
| > Exit Sub
| > End If
| > Dim recAdditionalCharges As New ADODB.Recordset
| > recAdditionalCharges.Open "SELECT * FROM tblAdditionalCharges
WHERE
| > ChargeID LIKE '" & cbChargeID.Text & "'", CurrentProject.Connection,
| > adOpenDynamic, adLockOptimistic
| > If recAdditionalCharges.EOF = True And recAdditionalCharges.BOF =
True
| > Then
| > Exit Sub
| > End If
| > tbDayNo.value = Format(Now, "dd-mmm-yy")
| > tbAdditionCharge.value =
| > recAdditionalCharges.Fields("ChargeDescription")
| > tbAdditionChargeAmount.value =
| > recAdditionalCharges.Fields("ChargeAmount")
| > recAdditionalCharges.Close
| > Set recAdditionalCharges = Nothing
| >
| > End Sub
| >
| > | >>
| >>
| >> Hi Bob,
| >>
| >> Me.tbDayNo=IIf(Me.DateCheck And IsNull(tbDayNo), _
| >> Format(Date,"dd/mm/yy"),tbDayNo)
| >>
| >> Regards
| >> Jacob
| >>
| >>
| >>
| >> | >> |
| >> | I want to add this to my code , Ony enter date if [DateCheck]
| >> (checkbox)
| >> | is -1
| >> | Any help would be great..............Thanks Bob
| >> |
| >> | Private Sub tbAdditionCharge_AfterUpdate()
| >> | If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| >> | tbDayNo.value = Format(Now, "dd-mmm-yy")
| >> |
| >> | End If
| >> | End Sub
| >> |
| >> |
| >>
| >>
| >
| >
|
|
 
J

JK

Horse flu makes horse a bit hoarse :-o
It is a bloody disaster in NSW (and Southern Qld.)

J


| Got It :) Worked it out Brilliant Thanks Guys ( JK that Horse flue Virus
not
| good for NSW!)
| Private Sub cbChargeID_AfterUpdate()
| If cbChargeID.Text = "" Then
| Exit Sub
| End If
| Dim recAdditionalCharges As New ADODB.Recordset
| recAdditionalCharges.Open "SELECT * FROM tblAdditionalCharges WHERE
| ChargeID LIKE '" & cbChargeID.Text & "'", CurrentProject.Connection,
| adOpenDynamic, adLockOptimistic
| If recAdditionalCharges.EOF = True And recAdditionalCharges.BOF = True
| Then
| Exit Sub
| End If
|
| tbAdditionCharge.value =
| recAdditionalCharges.Fields("ChargeDescription")
| tbAdditionChargeAmount.value =
| recAdditionalCharges.Fields("ChargeAmount")
| tbDateFlag.value = recAdditionalCharges.Fields("DateFlag")
| Me.tbDayNo = IIf(Me.DateFlag And IsNull(tbDayNo), _
| Format(Date, "dd/mm/yy"), tbDayNo)
| recAdditionalCharges.Close
| Set recAdditionalCharges = Nothing
|
| End Sub
|
| | > Hi Bob,
| >
| > If you want to disable a field when you are in a new record, use the
| > OnCurrent event:
| >
| > Me.tbDayNo.Enabled=IIf(Me.Form.NewRecrod,False,True)
| >
| > Regards/Jacob
| >
| >
| >
| > | > |I am getting my check box [DateFlag] to show the correct 0 and -1 when
I
| > | enter a record on my continuous form but the codes are not stopping
the
| > date
| > | from being entered, when I close the form and open it they all turn to
| > | zero's but that should not matter because its only when I enter a new
| > record
| > | that the date is not to enter, any thoughts ................Regards
Bob
| > |
| > | Private Sub tbAdditionCharge_AfterUpdate()
| > | Me.tbDayNo = IIf(Me.DateFlag And IsNull(tbDayNo), _
| > | Format(Date, "dd/mm/yy"), tbDayNo)
| > |
| > | 'If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| > | 'tbDayNo.value = Format(Now, "dd-mmm-yy")
| > |
| > | End Sub
| > |
| > |
| > | | > | > Sorry Guys, gave you the wrong AfterUpdate, This afterUpdate works
| > from
| > a
| > | > shortcut to enter in Additional Charges...Thanks for any Help....Bob
| > | >
| > | > Private Sub cbChargeID_AfterUpdate()
| > | > If cbChargeID.Text = "" Then
| > | > Exit Sub
| > | > End If
| > | > Dim recAdditionalCharges As New ADODB.Recordset
| > | > recAdditionalCharges.Open "SELECT * FROM tblAdditionalCharges
WHERE
| > | > ChargeID LIKE '" & cbChargeID.Text & "'", CurrentProject.Connection,
| > | > adOpenDynamic, adLockOptimistic
| > | > If recAdditionalCharges.EOF = True And recAdditionalCharges.BOF =
| > True
| > | > Then
| > | > Exit Sub
| > | > End If
| > | > tbDayNo.value = Format(Now, "dd-mmm-yy")
| > | > tbAdditionCharge.value =
| > | > recAdditionalCharges.Fields("ChargeDescription")
| > | > tbAdditionChargeAmount.value =
| > | > recAdditionalCharges.Fields("ChargeAmount")
| > | > recAdditionalCharges.Close
| > | > Set recAdditionalCharges = Nothing
| > | >
| > | > End Sub
| > | >
| > | > | > | >>
| > | >>
| > | >> Hi Bob,
| > | >>
| > | >> Me.tbDayNo=IIf(Me.DateCheck And IsNull(tbDayNo), _
| > | >> Format(Date,"dd/mm/yy"),tbDayNo)
| > | >>
| > | >> Regards
| > | >> Jacob
| > | >>
| > | >>
| > | >>
| > | >> | > | >> |
| > | >> | I want to add this to my code , Ony enter date if [DateCheck]
| > | >> (checkbox)
| > | >> | is -1
| > | >> | Any help would be great..............Thanks Bob
| > | >> |
| > | >> | Private Sub tbAdditionCharge_AfterUpdate()
| > | >> | If tbDayNo.value = "" Or IsNull(tbDayNo.value) Then
| > | >> | tbDayNo.value = Format(Now, "dd-mmm-yy")
| > | >> |
| > | >> | End If
| > | >> | End Sub
| > | >> |
| > | >> |
| > | >>
| > | >>
| > | >
| > | >
| > |
| > |
| >
| >
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Add to my AfterupDate 7
Command Button Query 3
Alteration to BeforeUpdate 1
Change Calender Start date 2
Field Size Dilemma 12
Calculation Problem 1
Add to AfterUpdate 3
Access 2 Digit year in Access Text Box 3

Top