NewBie Problem (1 Viewer)

rushB

New member
Local time
Today, 20:01
Joined
Aug 3, 2020
Messages
24
bring you form in design view.
click on the combobox.
on it's Event, AfterUpdate, add some code

private sub combo_name_AfterUpdate()
Call fncRiskDate
end sub

again, click on the Last Review Date textbox, add code
to its AfterUpdate event:

private textboxName_AfterUpdate()
Call fncRiskDate
end sub
No still no reaction. Would you mind hoping on to my pc via teamviewer or so?
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 02:01
Joined
May 7, 2009
Messages
19,230
i don't have teamviewer.
compress your db in Zip then upload it here as attachment.
 

rushB

New member
Local time
Today, 20:01
Joined
Aug 3, 2020
Messages
24
i don't have teamviewer.
compress your db in Zip then upload it here as attachment.
okay will do that
thanks
i don't have teamviewer.
compress your db in Zip then upload it here as attachment.
here is the db
 

Attachments

  • tst.zip
    81.6 KB · Views: 86

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 02:01
Joined
May 7, 2009
Messages
19,230
you use the combobox name (combo123).
see the code.
 

Attachments

  • tst.zip
    147.1 KB · Views: 80

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 02:01
Joined
May 7, 2009
Messages
19,230
it simply means that any pending update you make to the record, be it new or just
modifying the old one, all changes will be saved to the table.

its same as executing this:

DoCmd.RunCommand acCmdSaveRecord
 

Users who are viewing this thread

Top Bottom