2018年4月25日水曜日

Accessアクセス from VB ~Class化してみるよ~(3.5)

Propertyが空の判定方法。なんとなくわかりました。
パターンは3つ。

Dim Str_Empty As String
If Str_Empty = "" Then
  Debug.Print("""""")
End If
If Str_Empty = vbNullString Then
  Debug.Print("vbNullString")
End If
 If Str_Empty = Nothing Then
   Debug.Print("Nothing")
 End If

こんな感じ。
真っ先に試した""や、vbNullStringで引っかかってくれなくて、
タダの文字列比較なハズなんだがなぁ…思って、上記のように簡素化したら、
やっぱりタダの文字列比較でした。

きっと、引っかかってたのは、設定しているのといないProperty名を
間違ってたんだろう( ゚-゚)~゚


<<前  次>>



0 件のコメント:

コメントを投稿