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が、「Account Number Does Exist」がポップアップするので、値があることを意味しますが、なぜ に表示されないの Me.txtWAccounTypeですか?