我不知道为什么我不能将AccountType
(from TblAccount
) 的值传递给Me.txtWAccounType
(textbox from WithdrawView
)。
请帮助我,这是我的代码
If IsNull(DLookup("[AccountId]", "TblAccount", "AccountId = '" & txtWAccountId & "'")) Then
MsgBox "Account Number Doesn't Exist"
Else
Me.txtWAccounType.Value = DLookup("[AccountType]", "TblAccount", "AccountId = ' " & Forms![WithdrawView]![txtWAccountId] & "' ")
MsgBox "Account Number Do Exist"
End If
我的目标是检索 的那个AfterUpdate
,AccountId. messagebox
但是弹出一个“帐号是否存在”,所以这意味着有一个值,但为什么它没有出现在 中 Me.txtWAccounType
?