Hi,
I have this code
What I want to ask is the highlighted line, it compares the RowSource with the oldRowSource variable that I created earlier. While I have the msgbox to see the value between List0.RowSource and the oldRowSource, it seems exactly the same. But why it wont go to IF clause? It always goes to ELSE as I get msgbox go to else..
**note:The first clause in msgbox is the oldRowSource variable, and the second(bottom) is the List0.RowSource..It is exactly the same, so it should go to IF clause. Any help? Thanks
I have this code
Code:
Dim ctr As Long
Dim oldRowSource As String
Dim newRowSource As String
Dim listValue As Long
Dim unitID As Long
oldRowSource = "SELECT TblCustOrderUnit.OrderUnitID, TblCustOrderUnit.OrderID, TblCustOrderUnit.UnitID, TblCustOrderUnit.SerialNumber FROM TblCustOrderUnit;"
MsgBox (oldRowSource & vbCrLf & "=====================================================" & vbCrLf & Me.List0.RowSource)
listValue = Me.List0.Value
unitID = Me.List0.Column(2)
newRowSource = "SELECT TblCustOrderUnit.OrderUnitID, TblCustOrderUnit.OrderID, TblCustOrderUnit.UnitID, TblCustOrderUnit.SerialNumber " _
& "FROM TblCustOrderUnit " _
& "WHERE (((TblCustOrderUnit.UnitID)=" & unitID & "));"
[highlight #FCE94F]If Me.List0.RowSource = oldRowSource Then[/highlight]
ctr = 1
MsgBox (ctr & vbCrLf & unitID)
Me.List0.RowSource = newRowSource
Me.List0.Requery
ElseIf Me.List0.RowSource = newRowSource Then
ctr = 2
MsgBox (ctr & vbCrLf & unitID)
Else
Msgbox ("go to else")
End If
ctr = 2
End Sub
What I want to ask is the highlighted line, it compares the RowSource with the oldRowSource variable that I created earlier. While I have the msgbox to see the value between List0.RowSource and the oldRowSource, it seems exactly the same. But why it wont go to IF clause? It always goes to ELSE as I get msgbox go to else..

**note:The first clause in msgbox is the oldRowSource variable, and the second(bottom) is the List0.RowSource..It is exactly the same, so it should go to IF clause. Any help? Thanks