E
EMILYTAN via AccessMonster.com
I am trying to code on when a button is being click from other form, a combo
box text from other form will check to "Close" where the job= 11111
is this the right way to code?
Dim str1 As String
Dim str2 As String
str1 = Forms![WIPRaw]!txtJob.Text
str2 = Me.txtJobOld
If str2 = str1 Then
Forms![WIPRaw]!combo1.Text = "Close"
End If
Simply can't get it works...
box text from other form will check to "Close" where the job= 11111
is this the right way to code?
Dim str1 As String
Dim str2 As String
str1 = Forms![WIPRaw]!txtJob.Text
str2 = Me.txtJobOld
If str2 = str1 Then
Forms![WIPRaw]!combo1.Text = "Close"
End If
Simply can't get it works...