Search found 497 matches

by AmigoJack
Tue Jun 25, 2024 9:33 pm
Forum: Enhancement Suggestions
Topic: Allow easy switching of encoding types on the fly
Replies: 1
Views: 37

Re: Allow easy switching of encoding types on the fly

I think this is (most likely) only meant for reading files, as in having a file be opened in UTF-8 by default (or when no other encoding can be detected), but then the human reader somehow finds out it's actually Windows-1252 or else and just wants to re-load (or re-interpret) the file with a differ...
by AmigoJack
Tue Jun 25, 2024 3:05 pm
Forum: Enhancement Suggestions
Topic: Character code viewer
Replies: 5
Views: 62

Re: Character code viewer

Unicode code point U+00D8 encoded in UTF-8 as 0xC3 0x98 How would that look if Windows-1252 is used? Then you can't use "Unicode" anymore. Or would you? My suggestion was on purpose, because now it could look this way: code point D8 in Windows-1252 encoded as byte "0xD8" IBM 850...
by AmigoJack
Mon Jun 24, 2024 7:06 pm
Forum: Enhancement Suggestions
Topic: Character code viewer
Replies: 5
Views: 62

Re: Character code viewer

From my experience as both user and programmer I know how ambiguous requests can be both made and understood - both sides think they hit the nail and don't think of what it could also mean/can also be meant (by simply lacking to know which other things exist, too). That's why I listed every possible...
by AmigoJack
Sun Jun 23, 2024 3:29 pm
Forum: General
Topic: Issues with SVG files, and opening from File Explorer
Replies: 21
Views: 348

Re: Issues with SVG files, and opening from File Explorer

Oh, you confirmed that TextPad does use/used a mutex already . I interpreted your post as being exclusive, like "the DDE is like a mutex", instead of being an addition that already exists in the background in case DDE fails to work as expected. I now understood it this way (and am glad it'...
by AmigoJack
Sun Jun 23, 2024 11:50 am
Forum: General
Topic: Issues with SVG files, and opening from File Explorer
Replies: 21
Views: 348

Re: Issues with SVG files, and opening from File Explorer

No, Notepad doesn't use Mutexes and/or doesn't forward file opening requests to the already running instance to then close its second instance right away. Did Windows 11 really change this?
by AmigoJack
Sun Jun 23, 2024 7:41 am
Forum: General
Topic: Issues with SVG files, and opening from File Explorer
Replies: 21
Views: 348

Re: Issues with SVG files, and opening from File Explorer

While this may work best when f.e. I select multiple files in the Explorer to then shell select "Open" or "Open with..." for decades the way to make your program single instance only was: to simply create a Mutex at the start and then check if it already existed: in that case jus...
by AmigoJack
Sat Jun 22, 2024 7:53 pm
Forum: Enhancement Suggestions
Topic: Open current file in binary mode
Replies: 1
Views: 40

Re: Open current file in binary mode

And vice-versa please, so that when TextPad opened a file in binary view just because its filename extension was .jpg, although its content was still ASCII text. However, for me a simple toggle button is enough.
by AmigoJack
Sat Jun 22, 2024 7:52 pm
Forum: Enhancement Suggestions
Topic: Character code viewer
Replies: 5
Views: 62

Re: Character code viewer

the hex value of the character ... a UTF-8 encoded text Those are 2 (if not 3) different things: The " hex value " of a character is subject to the encoding - in case of UTF-8 a character can be encoded in 1 or 2 or 3 or 4 bytes, resulting in such hex values. Different text encodings have...
by AmigoJack
Wed Jun 19, 2024 8:20 am
Forum: Enhancement Suggestions
Topic: Resizable dialog boxes
Replies: 1
Views: 49

Re: Resizable preferences dialog box

The dialog windows "Customize" (for the toolbars and shortcuts) and "Document properties" could benefit from being resiable, too.
by AmigoJack
Wed Jun 12, 2024 8:33 pm
Forum: General
Topic: Issues with SVG files, and opening from File Explorer
Replies: 21
Views: 348

Re: Issues with SVG files, and opening from File Explorer

Textpad still doesn't open WITH a text file when you double-click on it Please keep in mind that the Windows version can be the culprit. In my short experience with Windows 11 no program was able to set file associations (not even when run with administrator privileges) - I had to choose the "...
by AmigoJack
Tue Jun 11, 2024 8:13 am
Forum: General
Topic: Bug (v8.19.0) Display issue: Docked windows on the left side of the main window
Replies: 5
Views: 96

Re: Bug (v8.19.0) Display issue: Docked windows on the left side of the main window

I guess you miss the captions for 2 tabs, while only the caption for 1 is displayed. In that case: does it also happen using English as language? Mayby Deutsch misses a few translations...
by AmigoJack
Tue May 28, 2024 5:57 pm
Forum: General
Topic: Textpad hangs/crashes when accessing OneDrive
Replies: 15
Views: 1754

Re: Textpad hangs/crashes when accessing OneDrive

File Explorer sends DDE messages with the file name to TextPad when you double click a file Isn't this a configuration in the Registry, where one could easily delete ...\shell\open\ddeexec\ ? For TextPad 8.4.0 on Win7x64 I don't see this with my associated file extensions, and through the decades I...
by AmigoJack
Tue May 28, 2024 4:11 pm
Forum: General
Topic: Textpad hangs/crashes when accessing OneDrive
Replies: 15
Views: 1754

Re: Textpad hangs/crashes when accessing OneDrive

This all worked fine for years using TextPad 7, but reverting back to TP 7 temporarily didn't help. Don't underestimate that you constantly got Windows updates - one tiny bit in that could be responsible for the "new" behavior - that would also explain why switching the TextPad version al...
by AmigoJack
Mon May 27, 2024 8:04 am
Forum: General
Topic: find/replace space to hyphen at specific column location?
Replies: 3
Views: 365

Re: find/replace space to hyphen at specific column location?

Oh yes - I totally forgot that. Corrected my post.

Your "\s" however could match more than only a space - the literal space would fit more IMO because then it wouldn't match unexpected "spaces" (like linebreaks or non-ASCII spaces). Or this is actually wanted...
by AmigoJack
Sun May 26, 2024 4:32 pm
Forum: General
Topic: find/replace space to hyphen at specific column location?
Replies: 3
Views: 365

Re: find/replace space to hyphen at specific column location?

You have to search for each column separately: Find: ^(.{26}) (Note the trailing space after the closing curly bracket.) Explanation: ^ = start of line () = capture what's in between the parenthesis . = any character {26} = repeat previous match (that is "any character") 26 times (space) =...