Valentina for Xojo/REALbasic FAQ
Thank you for your interest in Valentina. Here you will find links to general topics related to all Valentina for V4RB products as well as specific frequently asked questions and answers about REALbasic support.
Installation Questions
Error Handling Questions
Q: Is VException class related to REALbasic' class Exception?
You can write the following code, which allow you handle Valentina exceptions separetly from any other exceptions:
SomeFunction()
...
Exception err as VException
MsgBox "Valentina throw exception: " + Str(err.ErrorNumber) + ":" + err.Message
Exception err
MsgBox "Error!"
end
Class VException is child of Exception class of REALBasic. This means that you can also write code as in the next example and still catch Valentina exceptions.
SomeFunction()
...
Exception err
MsgBox "Error!"
end
Fields Questions
RBDB API Questions