echoAwoo Posted August 14, 2016 Share Posted August 14, 2016 So I like easy to read to code, and an idea hit me today that I wanted to run by this group I know conditionals can be rather hard on process time, single-lines especially. But this idea is to wrap blocks of code in always pass conditionals to make containers for those blocks inside the code Basically If 1 Then ;~ Some stuff here that will always execute since 1 is indeed eq. to itself. EndIf I have concerns with using a LOT of these since conditionals can be heavy. Plus there would be additional layers of conditionals inside for error checking, etc. The way that I've tested it so far seems to work just fine. Thoughts? Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted August 14, 2016 Moderators Share Posted August 14, 2016 echoAwoo, If all you want is a container, then I suggest the #region...#endregion directives. Look in SciTE Help under <Lexer features> to see how it works. M23 echoAwoo 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
echoAwoo Posted August 14, 2016 Author Share Posted August 14, 2016 OH NICE Thanks, I figured there was probably a simpler way to do it, thanks! Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted August 14, 2016 Moderators Share Posted August 14, 2016 echoAwoo, Glad I could help. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now