Access 2003 I am very new at this...
I have created an Asset and Software License Tracking Database.(I use the word created very loosely)
tbl_Assets
field_EmployeeI D (Pulled from a lookup table)
field_StatusID (CheckBox)
tbl_Software
field_EmployeeI D (Pulled from a lookup table)
field_StatusID (CheckBox)
I only listed the fields I felt relevant
The form below displays all assigned assets and software licenses for a user.
frm_AssignedAss ets
Status Active/Inactive (Combo)
It has 3 datasheet subforms with the information.
They are:
Assigned Assets (Datasheet)
Asset Upgrades (Datasheet)
Software Licenses (Datasheet)
The scenario is when I change the Status on frm_AssignedAss ets from Active to Inactive
I would like to remove the value from the tbl_Assets.Empl oyeeID and change the value in
tbl_Assets.Stat usID to Yes and the same for tbl_Software
Confusing?
I have been messing with this all day and although this may seem easy to some I cannot for the life of me figure out the correct way to do it.
I thought it would be using the ondirty
If Me!Status.Inact ive = True then ?
whatever I follow with has not worked...This maybe completely offbase...
Any help is greatly appreciated. :)
I have created an Asset and Software License Tracking Database.(I use the word created very loosely)
tbl_Assets
field_EmployeeI D (Pulled from a lookup table)
field_StatusID (CheckBox)
tbl_Software
field_EmployeeI D (Pulled from a lookup table)
field_StatusID (CheckBox)
I only listed the fields I felt relevant
The form below displays all assigned assets and software licenses for a user.
frm_AssignedAss ets
Status Active/Inactive (Combo)
It has 3 datasheet subforms with the information.
They are:
Assigned Assets (Datasheet)
Asset Upgrades (Datasheet)
Software Licenses (Datasheet)
The scenario is when I change the Status on frm_AssignedAss ets from Active to Inactive
I would like to remove the value from the tbl_Assets.Empl oyeeID and change the value in
tbl_Assets.Stat usID to Yes and the same for tbl_Software
Confusing?
I have been messing with this all day and although this may seem easy to some I cannot for the life of me figure out the correct way to do it.
I thought it would be using the ondirty
If Me!Status.Inact ive = True then ?
whatever I follow with has not worked...This maybe completely offbase...
Any help is greatly appreciated. :)
Comment