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
Now what I have most of the time in My Subs.
Problem now is, that this sometimes will be forgotten.
Hope someone like this idea.
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
B4X:
Sub StartNewSub
Try
...... DO something
Catch
WriteErrorLog("Something Wrong in Sub StartNewSub")
End Try
End Sub
Hope someone like this idea.