Hi All!
I am trying to revive a chunk of code that was working before I started "streamlining" it. The trouble started when I converted Quickbasic subroutines
Subroutine:
blah, blah
RETURN
to PowerBasic subroutines
Subroutine
More blah
End SUB
Now when I try and compile I get an error message "Variable Expected" on one of the fubction declarations. I confirmed that all of the subs had end sub at the end of each. The function was working previously. Does anyone have any ideas where to go next?
Thanks,
Steve
I am trying to revive a chunk of code that was working before I started "streamlining" it. The trouble started when I converted Quickbasic subroutines
Subroutine:
blah, blah
RETURN
to PowerBasic subroutines
Subroutine
More blah
End SUB
Now when I try and compile I get an error message "Variable Expected" on one of the fubction declarations. I confirmed that all of the subs had end sub at the end of each. The function was working previously. Does anyone have any ideas where to go next?
Thanks,
Steve
Comment