Wish Using Template for B4J, B4A and B4i IDE

Swissmade

Well-Known Member
Licensed User
Longtime User
Hi all,

What can be nice, if we have the possibility to use Templates in the IDE.
What I mean by this.
If you have a Sub I always like to have Try Catch End Try in it.
See Code Snipper
B4X:
Sub StartNewSub
...... DO something
End Sub
Now what I have most of the time in My Subs.
B4X:
Sub StartNewSub
Try
...... DO something
Catch
  WriteErrorLog("Something Wrong in Sub StartNewSub")
End Try
End Sub
Problem now is, that this sometimes will be forgotten.
Hope someone like this idea.
 
Top