I have a form with the Textboxes InstalTime(Locked) and Labortime.
InstalTime - suggested amount of time it takes to install a part
LaborTime - The Time Used to install a PArt
I need to have the default Value for LaborTime be the # that is populated in InstalTime and still be able to modify it?
I tried
Code:
InstalTime_AfterUpdate ()
if isnull(me.EstLabor) then exit sub
me.Labor = me.EstLabor
But that didnt seems to work.