hookshy Well-Known Member Licensed User Longtime User Feb 12, 2018 #1 It would be great to have expandable code The code will expand upon function blocks as subs do Thank you
It would be great to have expandable code The code will expand upon function blocks as subs do Thank you
Cableguy Expert Licensed User Longtime User Feb 12, 2018 #2 You can use #Region for that, I used to use it inside subs all the time, until I preferred calling "external" specialised subs
You can use #Region for that, I used to use it inside subs all the time, until I preferred calling "external" specialised subs
hookshy Well-Known Member Licensed User Longtime User Feb 12, 2018 #3 Cableguy said: You can use #Region for that, I used to use it inside subs all the time, until I preferred calling "external" specialised subs Click to expand... I have searched forum ...very hard to find a tutorial on how to use this region in subs
Cableguy said: You can use #Region for that, I used to use it inside subs all the time, until I preferred calling "external" specialised subs Click to expand... I have searched forum ...very hard to find a tutorial on how to use this region in subs
aaronk Well-Known Member Licensed User Longtime User Feb 12, 2018 #4 hookshy said: how to use this region in subs Click to expand... B4X: Sub MySub #region code here.. #end region End Sub #region Sub AnotherSub code here.. End Sub #end region
hookshy said: how to use this region in subs Click to expand... B4X: Sub MySub #region code here.. #end region End Sub #region Sub AnotherSub code here.. End Sub #end region