Hi people,
I could really use some help with the following.
Consider the following code:
----
sub a
call sub c
end sub
sub b
call sub c
end sub
sub c
do stuff
end sub
----
Now i need to know in sub c which sub (a or b) made the call to sub c.
I can do this using passed parameters or a global var construction
but i was hoping that PB has some way to tell me which sub made the call.
Anybody have any ideas? Thanks!
Regards,
Tom
------------------
[URL=http://www.DiyDataRecovery.nl]
I could really use some help with the following.
Consider the following code:
----
sub a
call sub c
end sub
sub b
call sub c
end sub
sub c
do stuff
end sub
----
Now i need to know in sub c which sub (a or b) made the call to sub c.
I can do this using passed parameters or a global var construction
but i was hoping that PB has some way to tell me which sub made the call.
Anybody have any ideas? Thanks!
Regards,
Tom
------------------
[URL=http://www.DiyDataRecovery.nl]
Comment