作成しているモジュールに「trycatch」ステートメントを追加したいと思います。キャッチする例外を数値形式で指定したい。これはサンプルコードです、
Try
interest = me.txtInterest.text
principal = me.txtPrincipal.text
totalPayment = interest + principal
Catch ex As Exception 'What is the proper exception for Number Format?
MsgBox("Number Format Error")
End Try
数値形式の例外を指定したい。どうすればそれができますか?