Is it possible to modify the command line options to allow an optional "custom URI"?
This would enable launching UltraEdit from web and email based server logs and automatically go to the line to edit simply by clicking a browser based link with a specified protocol.
I've manually added the ultraedit: protocol to the Windows registry to launch UltraEdit with UNC file path and line number. It works for me, but UltraEdit reports that the path is invalid because the path is prefixed with ultraedit:.
Example for a web based hyperlink:
Clicking on this hyperlink currently results in the command line:
The result is an error that states "ultraedit:\\server1\c\www\index.htm/10 contains an invalid path".
A filter would be needed to be added to UltraEdit's command line to filter the URI prefix.
NOTE: My registry file looks like this:
This would enable launching UltraEdit from web and email based server logs and automatically go to the line to edit simply by clicking a browser based link with a specified protocol.
I've manually added the ultraedit: protocol to the Windows registry to launch UltraEdit with UNC file path and line number. It works for me, but UltraEdit reports that the path is invalid because the path is prefixed with ultraedit:.
Example for a web based hyperlink:
Code: Select all
<a href="ultraedit:\\server1\c\www\index.htm/10">Edit index.htm at line 10</a>
Code: Select all
"C:\Program Files\IDM Computer Solutions\UltraEdit\uedit64.exe" ultraedit:\\server1\c\www\index.htm/10
A filter would be needed to be added to UltraEdit's command line to filter the URI prefix.
NOTE: My registry file looks like this:
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\ultraedit]
@="UltraEdit Protocol"
"URL Protocol"=""
"Content Type"="text/plain"
[HKEY_CLASSES_ROOT\ultraedit\DefaultIcon]
@="\"C:\\Program Files\\IDM Computer Solutions\\UltraEdit\\uedit64.exe\""
[HKEY_CLASSES_ROOT\ultraedit\shell]
[HKEY_CLASSES_ROOT\ultraedit\shell\open]
[HKEY_CLASSES_ROOT\ultraedit\shell\open\command]
@="\"C:\\Program Files\\IDM Computer Solutions\\UltraEdit\\uedit64.exe\" \"%1\""