HI All,
I've got a VB6 program which is going to call a series of Public Sub Routines that I have in a Module. My question is this:
When I call these, I'd normally use:but I want to be able to call a few of these sequentially, one after the other, as they complete.VB Code:
Call RoutineName
If I code my program like this, will it wait for one routine to finish to call the next?VB Code:
Call RoutineName1 vbModal Call RoutineName2 vbModal Call RoutineName3 vbModal
Can I use vbModal with routines, like I do with forms?




Reply With Quote