M marcomilazzo Member Licensed User Longtime User Apr 26, 2012 #1 Hi is there a way to discover if on application is running or is in pause? best regard marco
margret Well-Known Member Licensed User Longtime User Apr 27, 2012 #2 IsPaused (Component As Object) As Boolean Tests whether the given component is paused. Will also return true for components that were not started yet. Example: If IsPaused(Main) = False Then CallSub(Main, "RefreshData") This may help for your Activities and Code Modules. Last edited: Apr 27, 2012 Upvote 0
IsPaused (Component As Object) As Boolean Tests whether the given component is paused. Will also return true for components that were not started yet. Example: If IsPaused(Main) = False Then CallSub(Main, "RefreshData") This may help for your Activities and Code Modules.