All pastes #2053845 Raw Edit

Stuff

public text v1 · immutable
#2053845 ·published 2011-05-04 15:12 UTC
rendered paste body
Public Sub Form_Current()

DoCmd.OpenForm "frmEmployeeInfo", acNormal, , acFormReadOnly

' hide the salary controls for hourly paid employees
' hide the hourly rate controls for salaried employees

If IsNull(EmplSalary) And Not IsNull(HourlyRate) Then
EmplSalary.Visible = False
EmplSalary_Label.Visible = False
Else:
HourlyRate.Visible = True
HourlyRate_Label.Visible = True

End If

End Sub