PDA

Click to See Complete Forum and Search --> : Try...Catch...Finally?


Sep 15th, 2000, 08:50 AM
I've seen this video clip about the next generation of VB and they said VB programmers won't have to handle errors with "On Error Goto" anymore, but with Try...Catch...Finally scopes.
Anyone knows what it means?

kovan
Sep 15th, 2000, 09:24 AM
if your familiar with c++ its same thing as c++/java try n catch blocks

instead of using go to
you can try a piece of code and if it returns the error..
you catch that error and play with it what you want to do

ya vb7 is gonna have try n catch
and is going to be a TRUE OOP