BlueIshDan
☠
- Local time
- Today, 17:50
- Joined
- May 15, 2014
- Messages
- 1,121
I don't know but this is a shot in the dark.
Maybe something to do with the case sensitivity during runtime of your
frmOrderEntry
Maybe something to do with the case sensitivity during runtime of your
Code:
If Me.txtAccountsStatus = "Account on Stop" Then
Me.cmdProceed.Visible = False
MsgBox "Account is on stop" & Chr(13) & "You can view orders but can not place orders for this customer.", vbInformation
Else
If Me.txtNet <> 0 Then
If Me.txtNet <> Forms![COLOR="Red"]frmorderentry[/COLOR]![tblAllocation_subform].Form.txtSumAmount Then
Me.cmdProceed.Visible = False
Else
Me.cmdProceed.Visible = True
End If
Else
Me.cmdProceed.Visible = True
End If
End If
frmOrderEntry