J joop Active Member Licensed User Longtime User Nov 9, 2015 #1 Don't know if this is a bug but can the name Init_xxx for a subroutine not be used in a module? I think it only happens in a module. This name can be used with android Sub Init_test (error) end sub Sub Ini_test (ok) end sub b4i V2.32 Attachments bug1_ini.jpg 258.7 KB · Views: 206
Don't know if this is a bug but can the name Init_xxx for a subroutine not be used in a module? I think it only happens in a module. This name can be used with android Sub Init_test (error) end sub Sub Ini_test (ok) end sub b4i V2.32
Erel B4X founder Staff member Licensed User Longtime User Nov 9, 2015 #2 This is not a bug. Your sub name cannot start with init so the compiler throws this error (it is related to Objective C rules).
This is not a bug. Your sub name cannot start with init so the compiler throws this error (it is related to Objective C rules).
J joop Active Member Licensed User Longtime User Nov 9, 2015 #3 Okay Erel thanks i will rename it Init1_from_start instead off Init_from_start.