aalekizoglou Member Licensed User Longtime User May 13, 2013 #1 In the following code I get Sub 'OnSub' not found (warning #25). OnSub is Dim OnSub as string What am I doing wrong? B4X: If SubExists(MyModule, OnSub) Then CallSub2(MyModule, OnSub, Me) End If
In the following code I get Sub 'OnSub' not found (warning #25). OnSub is Dim OnSub as string What am I doing wrong? B4X: If SubExists(MyModule, OnSub) Then CallSub2(MyModule, OnSub, Me) End If
Erel B4X founder Staff member Licensed User Longtime User May 13, 2013 #2 This is a bug. It should have ignored this line. You will need to add an 'ignore comment: B4X: CallSub2(MyModule, OnSub, Me) 'ignore
This is a bug. It should have ignored this line. You will need to add an 'ignore comment: B4X: CallSub2(MyModule, OnSub, Me) 'ignore
aalekizoglou Member Licensed User Longtime User May 13, 2013 #3 Erel said: This is a bug. It should have ignored this line. You will need to add an 'ignore comment: B4X: CallSub2(MyModule, OnSub, Me) 'ignore Click to expand... If you're going to fix that I shouldn't bother adding the 'ignore comment.
Erel said: This is a bug. It should have ignored this line. You will need to add an 'ignore comment: B4X: CallSub2(MyModule, OnSub, Me) 'ignore Click to expand... If you're going to fix that I shouldn't bother adding the 'ignore comment.