Search found 13252 matches

by highend
05 May 2024 10:12
Forum: Bug Reports
Topic: Error:93 (0x0000005D), Invalid pattern string
Replies: 2
Views: 33

Re: Error:93 (0x0000005D), Invalid pattern string

It’s a script, check if it works correctly before using it there. The same problem would occur if you didn’t enter it directly but load an external script file instead
by highend
03 May 2024 19:16
Forum: Tips & Tricks, Questions & Answers
Topic: Help with regex search / visual filter
Replies: 3
Views: 60

Re: Help with regex search / visual filter

How you name the column isn't relevant, in the example it's the extra1 column = ex1 and the > isn't part of the name, it's to indicate that's a regex pattern
by highend
03 May 2024 17:59
Forum: Bug Reports
Topic: Error 9 on regex search for an extra column
Replies: 2
Views: 48

Error 9 on regex search for an extra column

Fresh instance, current beta Just use this search term: >ex1:31 You get the error only once, if you do the search again, no error (apart from the fact that it doesn't work at all) Error: 9 (0x00000009) Desc: Subscript out of range Dll: 0 Proc: doFindFiles: scanned 0 files in 1 folders (0 levels deep...
by highend
03 May 2024 17:57
Forum: Tips & Tricks, Questions & Answers
Topic: Help with regex search / visual filter
Replies: 3
Views: 60

Re: Help with regex search / visual filter

Afaik visual filters don't support regex for other columns than the name so it wouldn't work that way...

In theory the pattern would have looked like this: >ex1:^([3-5][0-9]|60)$ or in whatever extra column the data is...
by highend
02 May 2024 21:00
Forum: Tips & Tricks, Questions & Answers
Topic: Hide Desktop/Documents/Downloads, etc?
Replies: 3
Views: 110

Re: Hide Desktop/Documents/Downloads, etc?

Then define your own up button?

Add a user button to your toolbar
Name: E.g. "Up"
Icon: :up
On left click: goto gpc(resolvepath(<curpath>), "path");
by highend
02 May 2024 19:54
Forum: Tips & Tricks, Questions & Answers
Topic: commands to a button
Replies: 1
Views: 52

Re: commands to a button

Code: Select all

toolbar("treeshow,-,ctb36,ctb25,-,ctb26,ctb44,drive_X,-,ctb1,ctb6,ctb13,ctb18,ctb39,ctb38,-,ctb24,-,ctb10,flatview,ctb23,labels,-,|,ctb22,-,ctb62,ctb61,ctb60,ctb63,ctb56,ctb15,ctb58,ctb59,ctb54,ctb57");
    open "x:\Buch\";
by highend
02 May 2024 10:55
Forum: Tips & Tricks, Questions & Answers
Topic: Hide Desktop/Documents/Downloads, etc?
Replies: 3
Views: 110

Re: Hide Desktop/Documents/Downloads, etc?

I never want to see directory paths that are incomplete Where do you see incomplete paths in the tree? To disable items you don't want to see: Configuration | General | Tree and List | Items in Tree and List | Select Items... so if I click a shortcut/link to c:\Users\Me\OneDrive\Documents, then cli...
by highend
02 May 2024 07:50
Forum: Bug Reports
Topic: XYPlorer Impossible Slow Now
Replies: 5
Views: 139

Re: XYPlorer Impossible Slow Now

I want to see if any custom columns are used. Pressing Esc while a script is running quits it
by highend
02 May 2024 05:56
Forum: Bug Reports
Topic: XYPlorer Impossible Slow Now
Replies: 5
Views: 139

Re: XYPlorer Impossible Slow Now

Apart from that I would be careful with "Refresh during file operations", it does work with a ::fresh;?

Show the output of text columnlayout(, "get");
by highend
01 May 2024 23:29
Forum: Tips & Tricks, Questions & Answers
Topic: Scary Experience with XYplorer Trial
Replies: 5
Views: 149

Re: Scary Experience with XYplorer Trial

You can try that *g*
Exit XY, rename that file, start XY, try to save settings, tag something & save, etc.

To get the old state, again exit XY, rename the file back...
by highend
01 May 2024 23:15
Forum: Tips & Tricks, Questions & Answers
Topic: Scary Experience with XYplorer Trial
Replies: 5
Views: 149

Re: Scary Experience with XYplorer Trial

Failed to save tags, Save settings failed, Error 76, etc. Sounds to me that you didn't have a "Startup.ini" file in the XY folder anymore and it started to act as the portable version, trying to write into a subdir "Data" (which it can't unless it's running with admin privileges)
by highend
30 Apr 2024 11:17
Forum: Wishes
Topic: Custom path aliases in tabs
Replies: 35
Views: 753

Re: Custom path aliases in tabs

Stop talking, give it to us :ninja:
by highend
30 Apr 2024 11:10
Forum: Wishes
Topic: Custom path aliases in tabs
Replies: 35
Views: 753

Re: Custom path aliases in tabs

I like "Folder fusion" and one more suggestion:

RAT = Rapid Access Tree

If a free "rat" when buying XY isn't included I don't know what people would want more...
by highend
30 Apr 2024 11:08
Forum: Tips & Tricks, Questions & Answers
Topic: [CLOSED] The formatlist() "d" parameter does not seem to be able to filter duplicate items, a list of one per line
Replies: 2
Views: 56

Re: The formatlist() "d" parameter does not seem to be able to filter duplicate items, a list of one per line

That's not a bug For removing duplicates they can't be anywhere in the list but must follow each other. Your's aren't so you need to sort them first $paper = <<<MENU D:\test\1 D:\test\1.txt D:\test\1.zip D:\test\[2] D:\test\[2](1).zip <-dupe D:\test\[2](1).zip <-dupe D:\test\[2].txt D:\test\[2].zip ...