我的同事写的处理null数据的程序
 Public Function NullStrConv(dstr As Variant) As Double
  If IsNull(dstr) = True Then
     NullStrConv = 0#
  Else
     NullStrConv= dstr
  End If
End Function导入excel时的处理
     xlSheet.Cells(i, 2) = NullStrConv(Oradyn!TORI_KANA)
     xlSheet.Cells(i, 3) = NullStrConv(Oradyn!TORI_NAME)
     xlSheet.Cells(i, 4) = NullStrConv(Oradyn!TORI_RYAKU)
  这里的  NullStrConv = 0#  和 dstr 都是什么啊