現時点ではコードをテストできません(ラップトップはありません)が、If
以下のステートメントで:
Dim StrA As String, StrB As String
IF StrA = StrB Then
'code for true result
Else
'code for false result
End If
If
ステートメントは文字列をバイナリまたはテキストでチェックしますか?
現時点ではコードをテストできません(ラップトップはありません)が、If
以下のステートメントで:
Dim StrA As String, StrB As String
IF StrA = StrB Then
'code for true result
Else
'code for false result
End If
If
ステートメントは文字列をバイナリまたはテキストでチェックしますか?
比較は通常、テキスト、stra = STRAですが、StrCompを使用できます。
StrComp("stra","STRA",vbbinarycompare)
http://office.microsoft.com/en-ie/access-help/strcomp-function-HA001228914.aspx
Sub IsIt()
'Option Compare Database (default): True
'Option Compare Text : True
'Option Compare Binary : False
If "stra" = "STRA" Then
Debug.Print True
Else
Debug.Print False
End If
End Sub
設定 に依存するのoption compare text
が最も一般的だと思います