
Patrick B. answered 06/15/19
Math and computer tutor/teacher
No, there is high probability you will have to rewrite the entire source code...
There are probably gosub calls in the legacy code, which means you will have to
explicitly call the function or subroutine in VB.
I know VB supports the legacy line numbering, but for readability and sanity, the rewrite is
well worth it..
to make matters worse, there is event handling. The legacy code, you had to
write ON INTERRUPT calls to trap the event, call the handler (via another gosub)
and then reset the trap.
This is going to make life VERY messy in VB, and it will NOT be easy.
You are going to insane trying to do it and it will take you about as long as rewriting it