T
tlaker
2 computers, ME and 2000, both running Access 2000. Usurped some code from
"Access 2003 Inside Out" to convert e-mail addresses from http:// to mailto.
This is what I used:
Private Sub EmailName_AfterUpdate()
Dim IntI as Integer
If IsNothing(Me.EmailName) Then Exit Sub
Me.EmailName = Replace(Me.EmailName,"http://"', "mailto:")
End If
End Sub.
This works fine on my ME computer, but on the 2000, I get "Compile error
sub or function not defined" and IsNothing is highlighted. Is there
something about Windows 2000 that is different or is my code wrong for 2000?
Thanks
"Access 2003 Inside Out" to convert e-mail addresses from http:// to mailto.
This is what I used:
Private Sub EmailName_AfterUpdate()
Dim IntI as Integer
If IsNothing(Me.EmailName) Then Exit Sub
Me.EmailName = Replace(Me.EmailName,"http://"', "mailto:")
End If
End Sub.
This works fine on my ME computer, but on the 2000, I get "Compile error
sub or function not defined" and IsNothing is highlighted. Is there
something about Windows 2000 that is different or is my code wrong for 2000?
Thanks