Jump to content

User CallTips Manager gives error


 Share

Recommended Posts

  • Moderators

DickG,

 

it now works!

And I am at a complete loss as to why. I felt sure that the error you had earlier was because one of those 2 arrays was not being filled correctly - I did nothing more than add code to show the path and content of the arrays once filled. I made no changes at all to the manner in which the arrays were filled (which I thought was correct) - although I did fix the bug you found with Func not being at the left margin. Let me have a think about where we go now. :wacko:

 

Should I just compile and replace SciTE.exe

No, because i) the CallTip Manager is only a part of SciTEConfig and ii) I need to remove the errorchecking code. When I have had the think I mentioned above I will compile a new SciTEConfig for you to try. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Moderators

Melba23,

Try this version of SciTEConfig and see if it works for you: :)

 

M23

Edited by Melba23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Yes, it works!

However, it is missing the "Run AutoIt3 Registry check" button.

On ‎18‎/‎03‎/‎2014 at 6:05 PM, Melba23 said:

Melba23,

Try this version of SciTEConfig and see if it works for you: :)
attachicon.gif

M23

Edited by Melba23
Link to comment
Share on other sites

  • Moderators

DickG,

Some people are never satisfied! :D

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • 1 month later...

Encountered the same issue on a new machine: Windows 8.1 Enterprise x64, AutoIT 3.3.10.2, Scite 3.4.1.

Added the Active Directory UDF: '?do=embed' frameborder='0' data-embedContent>>

Wanted to incorporate the CallTips using "SciTE User CallTip Manager" using Header Mode, after parsing the file successfully received the error "Array variable has incorrect number of subscripts...".  I was able to narrow it down to the following line:

; Syntax.........: _AD_ErrorNotify($iDebug[, $sDebugFile = @ScriptDir & "AD_Debug.txt"])

It was returning: _AD_ErrorNotify($iDebug[, $sDebugFile = @ScriptDir & "AD_Debug

Could only assume it was something to do with StringRegExpReplace on that line, just renamed @ScriptDir & "AD_Debug.txt" to "" fixed it, don't know enough about regular expression to fix myself.

Now just got figure out why the CallTips aren't appearing in Scite and I'll be sweet 8)

Edit: Just found out that there was a newer version of AutoIT Scite Editor, that fixed the CallTips not appearing in Windows 8.1, although the Scite Config still doesn't parse the line above.

Edited by matrixnz
Link to comment
Share on other sites

  • Moderators

matrixnz,

I can see where the error occurs. The SRE stops when it finds a "." marking the end of a sentence and thinks the "." in "filename.ext" is it. Changing the SRE is easy, but I will have to check why I made stop at a "." in the first place so that it does not mess up when parsing other UDFs. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...