taniadimitri
Registered User.
- Local time
- Yesterday, 19:12
- Joined
- Mar 13, 2007
- Messages
- 17
Hi,
I have the below code in my form load.
If scorecard = "Appraiser" Then
Call Project_Type_AfterUpdate
End If
****************************************************
Private Sub Project_Type_AfterUpdate()
If Not IsNull(Project_Type) Then
If Project_Type = "disputes" Then
Disputevalue1.Visible = True
ElseIf Project_Type = "redo's" Then
Disputevalue1.Visible = False
ElseIf Project_Type = "random" Then
Disputevalue1.Visible = False
End If
End If
End Sub
I want Disputvalue field visible only when scorecard="appraiser" that is when when appraiser audit loads the form. But the above code is not working. Disputevalue is not showing up when i load the form as appraiser. Can you plase suggest if this approach is wrong. I am attaching the screen shots of the forms.
When an appariaser audit enters the form and enter ssn all the fields assocaited gets loaded. This is shown in screen shot1 that is attached. This is where I want to see the Dispute field visible.
I appreciate all your help.
Thanks,
I have the below code in my form load.
If scorecard = "Appraiser" Then
Call Project_Type_AfterUpdate
End If
****************************************************
Private Sub Project_Type_AfterUpdate()
If Not IsNull(Project_Type) Then
If Project_Type = "disputes" Then
Disputevalue1.Visible = True
ElseIf Project_Type = "redo's" Then
Disputevalue1.Visible = False
ElseIf Project_Type = "random" Then
Disputevalue1.Visible = False
End If
End If
End Sub
I want Disputvalue field visible only when scorecard="appraiser" that is when when appraiser audit loads the form. But the above code is not working. Disputevalue is not showing up when i load the form as appraiser. Can you plase suggest if this approach is wrong. I am attaching the screen shots of the forms.
When an appariaser audit enters the form and enter ssn all the fields assocaited gets loaded. This is shown in screen shot1 that is attached. This is where I want to see the Dispute field visible.
I appreciate all your help.
Thanks,
Attachments
Last edited: