poltergeist
Programmer
I've this little function and the trouble is that in one of my desktop I can see my Errormessage in the other I'll have the Visualbasic own Errormessage
Function ErrorText() As Double
dim result as Double
On Error GoTo handler
Result = 8 / 0
Exit Function
handler:
MsgBox "Division 0 isn't allowed", , vbOKOnly
Resume Next
End Function
peterguhl@yahoo.de
Function ErrorText() As Double
dim result as Double
On Error GoTo handler
Result = 8 / 0
Exit Function
handler:
MsgBox "Division 0 isn't allowed", , vbOKOnly
Resume Next
End Function
peterguhl@yahoo.de