Android Question How to make calls callsub the current sub and not an old code?

a_carignan

Member
Licensed User
Longtime User
Here is a procedure I call with a callsub
sub sleep_reenvoyer_alarm
Msgbox2 ("Hello", "Alain", "Ok", "", "", icon)
End Sub
here's what makes me really
sub sleep_reenvoyer_alarm
If Msgbox2 ("The card has not been received, what do you do?", Title, "Resend", "Cancel", "", icon) = Then DialogResponse.POSITIVE Global.envoyer_carte(Global.carte_envoyer.carte,Global.carte_envoyer.Tirage,Global.carte_envoyer.carte_type)
End Sub
I admit this is an old code, but I must change it. there is no other procedure in all sleep_renvoyer_alarm the program.
what's going on there? how to remedy the situation?
 

a_carignan

Member
Licensed User
Longtime User
Oops, I realized where my mistake was, it was not the procedure that called callsub but another procedure. I think I'm tired and I'm going to bed.:oops:
 
Upvote 0
Top