Skipping VBA Debugging Mode

I have the following code:

Public Sub Test1 Dim RC as myDll.Controller Set RC = New myDll.Controller RC.DoTask Debug.print "1" Debug.print "2" RC.DoOtherTask Msgbox "Help Me!" End Sub 

When I use debug mode and execute the code by pressing F8, as soon as I press F8 after RC.DoTask, all the code until msgbox is executed. There are printed lines in my direct window, rc.DoOtherTask ran.

Has anyone seen this?

This is fully repeatable, but only in the version of VBA that comes with the product I'm using.

+7
source share
1 answer

The software vendor returned and said it was a coding problem at their end. It is not related to VBA, VBA editor, etc.

0
source