J
Joy
If (Len(Trim(proj.Tasks(i).Text24)) > 0) Then
...
Else
...
End If
but error: object variable or with block variable not set
if I change it to :
If Not proj.task(i).Text24 Is Nothing Then
...
Else
...
End If
error: Object does not support this property or method ...
what I can do about this
thanks
...
Else
...
End If
but error: object variable or with block variable not set
if I change it to :
If Not proj.task(i).Text24 Is Nothing Then
...
Else
...
End If
error: Object does not support this property or method ...
what I can do about this
thanks