Search found 128 matches

by rjbill
24 Feb 2024 01:45
Forum: Features
Topic: DONE? "Never Delete" Find AND Replace List Items
Replies: 2
Views: 1639

DONE? "Never Delete" Find AND Replace List Items

I have a REALLY NICE "Universal" Paste Buffer App (FREE) for Windows that has some nice features, called "Ditto" ( https://ditto-cp.sourceforge.io/ ). It mostly just remembers "all" of my Copies and Cuts (including non-textual), with some large upper limit I've chosen (...
by rjbill
23 Feb 2024 08:54
Forum: Features
Topic: DONE? Bookmark a Line with Mouse Click or ?
Replies: 1
Views: 1502

DONE? Bookmark a Line with Mouse Click or ?

I thought we used to be able to Right-Click the Line Number and do Bookmark stuff. That would be nice if we could. I think it should be at the TOP of the context menu. I think we used to be able to Double-Click the Line Number and it would toggle the Bookmark. Maybe you changed it to Select the Line...
by rjbill
23 Feb 2024 08:45
Forum: Bugs
Topic: Ctrl+Alt+C — Copy & Append not working
Replies: 2
Views: 1762

Ctrl+Alt+C — Copy & Append not working

Afaict, Ctrl+Alt+C — Copy & Append is not working, and is only doing Copy.
by rjbill
04 Feb 2024 23:11
Forum: Features
Topic: DONE: Global/Static/User/Scripting .INI file and Object
Replies: 2
Views: 1509

Re: DONE: Global/Static/User/Scripting .INI file and Object

THANKS.

That will come in very handy.
by rjbill
25 Jan 2024 08:42
Forum: Bugs
Topic: Syntax Editor Color Weirdness
Replies: 2
Views: 1671

Syntax Editor Color Weirdness

I opened up the Syntax Editor and it looks like this:
.
by rjbill
24 Jan 2024 09:00
Forum: Features
Topic: Local Help CHM in Menu
Replies: 2
Views: 1477

Local Help CHM in Menu

It would be nice to have a Help menu item for a local .CHM if the user downloads it and installs it. (wherever)
by rjbill
24 Jan 2024 08:58
Forum: Features
Topic: DONE: Global/Static/User/Scripting .INI file and Object
Replies: 2
Views: 1509

DONE: Global/Static/User/Scripting .INI file and Object

If you "get some free time", this would be a nice thing to have for scripting users. A Global .INI file that is loaded at Editor startup and written at Editor quit. An associated Object, like the Scriptable Object, would have the values loaded into it for Get and Set by the user's scripts,...
by rjbill
23 Jan 2024 23:55
Forum: Scripts
Topic: TMemIniFile
Replies: 3
Views: 3779

Re: TMemIniFile

BTW -- I'm using this .ini for another Script called "TabToLastColumn", which will use this stored value. Unfortunately, it will have to open and read the file every time it's called, which is not ideal. It's the only way I could see to save a STATIC value between executions. It would be n...
by rjbill
23 Jan 2024 23:45
Forum: Scripts
Topic: TMemIniFile
Replies: 3
Views: 3779

Re: TMemIniFile

Okay. Thanks.

So it's been broken and no one noticed because no one tried it?
by rjbill
23 Jan 2024 22:25
Forum: Scripts
Topic: TMemIniFile
Replies: 3
Views: 3779

TMemIniFile

Now I can't get this .ini stuff to work. I originally tried writing an Integer, but it wouldn't accept the variable as an integer, no matter what I did. (WriteInteger) So I decided to write it as a string. nTabColumn is created using: var nTabColumn = StrToInt (InputBox ("Tab To Column", &...
by rjbill
23 Jan 2024 22:18
Forum: Scripts
Topic: Error Reporting
Replies: 2
Views: 1482

Re: Error Reporting

It works without the MainApp.

Mine has never changed the cursor location anywhere. (that I can remember historically, even)
Even when I do Dual Document View like is suggested in the Help.
by rjbill
23 Jan 2024 22:15
Forum: Bugs
Topic: CHM Help file
Replies: 3
Views: 1550

Re: CHM Help file

Thanks. That was the problem.

It's not Unlock, it's UnBlock.

Just right-click on the file and choose Properties, and at the bottom click the Unblock checkmark.
by rjbill
23 Jan 2024 20:03
Forum: Bugs
Topic: CHM Help file
Replies: 3
Views: 1550

CHM Help file

I don't know if it's just me, but the CHM file doesn't work. (newly downloaded)
When I click on an item in the left "menu", it doesn't show anything in the right section.
by rjbill
23 Jan 2024 19:51
Forum: Bugs
Topic: FIXED: [v16.10] CTRL-RIGHT bug
Replies: 10
Views: 2149

Re: FIXED: [v16.10] CTRL-RIGHT bug

Thank you. BTW, maybe this is fixed, but, if you are at the front of this line (underscores are SPACEs) and press Ctrl-Shift-Right-Arrow: ___TMemIniFile ini = TMemIniFile.Create("c:\MyFolder\Settings.ini"); It selects THIS, with the the vertical bar being the cursor: ___TMemIniFile | ini =...
by rjbill
23 Jan 2024 18:51
Forum: Scripts
Topic: Error Reporting
Replies: 2
Views: 1482

Error Reporting

The level and type of error reporting in the Scripting system is ridiculous and stupid. Fixed it: The problem was "++nCount", which is not allowed, it has to be "nCount++". It's actually SAD and unfortunate that the error reporting works like this. For the JS code below, it only ...