- Posted by
- Where do you set the directory where scripts are located? Or do I need to add each existing script one at a time? The reason I ask is either after the last update or the previous one my scripts disappeared from the "All Scripts" popup window. Also ( see attached image ), whether adding a new script ...Posted in Scripts
-   Topics
-   Views
- spaceBAR
Aug 16, 2023
- Got answer from UltraEdit, Inc. support: The only way to open files in an external editor from UltraFinder is via interaction with UltraEdit or UEStudio.Posted in UltraFinder General Discussion
-   Topics
-   Views
- spaceBAR
Mar 28, 2023
- Is there a way to open a selected file like in search results in an external editor if UltraEdit or UEStudio is not installed? TIAPosted in UltraFinder General Discussion
-   Topics
-   Views
- spaceBAR
Mar 23, 2023
- I believe I've figured out one way to accomplish it, but for some reason the UltraEdit.activeDocument.selection only retrieves the last value selected unless I'm using it incorrectly. UltraEdit.outputWindow.showStatus=false; UltraEdit.outputWindow.clear(); if (UltraEdit.outputWindow.visible == false...Posted in Scripts
-   Topics
-   Views
- spaceBAR
May 04, 2017
- Ok, I'm sorry I didn't explain this well. :oops: I'm just trying to duplicate the same functionality in a script that I can use in UES. For example, Let's say I have these values in UES active window : BAXISIFPDMOB BAXISIFPD-MOBTLT BAXISIPD BAXISIPD-MOB BAXISITBL-MOBTLT BAXISLED-WALL The values in r...Posted in Scripts
-   Topics
-   Views
- spaceBAR
May 03, 2017
- I have a simple VB script that I use in Excel that copies selected cell values to the clipboard as a delimited list: Sub CopyToDelimited() Dim rRange As Range Dim rCount As Integer Dim pCount As Integer Dim sQuery As String Dim strDelimit As String Dim strEnclose As String Dim objDataObj As DataObje...Posted in Scripts
-   Topics
-   Views
- spaceBAR
May 02, 2017
- Yeah I can't figure out what delimiter to put between the strings either, Check out the attached image. If you figure it out please post solution.Posted in UltraCompare General Discussion
-   Topics
-   Views
- spaceBAR
Jan 25, 2013
- Thanks for your input! I have sent an email to IDM Support referencing this post.Posted in FTP/SFTP / SSH/Telnet
-   Topics
-   Views
- spaceBAR
Feb 27, 2012
- I'm sorry, I've experimented with this so much trying to figure out whats going on I left out those details in my post/question. Have you enabled in UEStudio at Advanced - Configuration - FTP the setting Show FTP log in output window and have opened the output window during connecting? Yes, I've ena...Posted in FTP/SFTP / SSH/Telnet
-   Topics
-   Views
- spaceBAR
Feb 25, 2012
- *** UEStudio 11.20.0.1006 When connecting via SFTP, The login takes a long time(+25 secs) when attaching to any machine running: HP-UX , But connects(SFTP) almost immediately to any machine running: SunOS If I use the FileZilla client and connect via SFTP to either a HP-UX or SunOS machine, It conn...Posted in FTP/SFTP / SSH/Telnet
-   Topics
-   Views
- spaceBAR
Feb 25, 2012
- Thanks for the input!!! I finally figured out the perl regular expressions to use as a group parsing rule in the "Function List" to list the function or procedure names in a oracle package which ignores single line comments (i.e. lines that have "--" before the word "function" or "procedure") and it...Posted in Syntax Highlighting
-   Topics
-   Views
- spaceBAR
Jun 23, 2010
- This perl style regular expression will match a comment block from the first "/" in "/*" to the last "/" in "*/": ((?:\/\*(?:[^*]|(?:\*+[^*\/]))*\*+\/)|(?:\/\/.*)) I am using UEStudio v10 and it finds/highlights comment blocks when this perl regex is used, it even handles the case where there are mu...Posted in Find/Replace/Regular Expressions
-   Topics
-   Views
- spaceBAR
Jun 23, 2010
- I created these perl regular expressions and use them in the "Function List" as a group parsing rule for listing the function or procedure names in a oracle package: (f)unction( )+([a-zA-Z0-9,_]+$) (p)rocedure( )+([a-zA-Z0-9,_]+$) They correctly list the names in the format I want, for example: p pr...Posted in Syntax Highlighting
-   Topics
-   Views
- spaceBAR
Jun 22, 2010