Search found 34 matches

by pulp
04 Jan 2019 20:54
Forum: Bug Reports
Topic: Windows 7 freezes when using XYPlorer
Replies: 2
Views: 823

Re: Windows 7 freezes when using XYPlorer

Thank you for your feedback. Unfortunately i use a cable mouse. But i also think thats a hardware problem (USB?, videocard?) and XYPlorer is just the programm who triggers the problem.
by pulp
19 Dec 2018 18:44
Forum: Bug Reports
Topic: Windows 7 freezes when using XYPlorer
Replies: 2
Views: 823

Windows 7 freezes when using XYPlorer

On my work computer Windows 7 freezes about 1-2 times a week. Always before that I do an action with XYplorer. For example, selecting a folder or file and usually switching to a folder. I believe that a change to a network share folder the effect occurs more often. Eventually whenever a hard drive h...
by pulp
26 Oct 2017 07:30
Forum: Bug Reports
Topic: multi-monitor: show xy on correct taskbar?
Replies: 58
Views: 17044

Re: multi-monitor: show xy on correct taskbar?

admin wrote:
pulp wrote:Thank you works great.
Let me know about the side effects... (I would not have dared to do this).
i will let you know
by pulp
25 Oct 2017 07:36
Forum: Bug Reports
Topic: multi-monitor: show xy on correct taskbar?
Replies: 58
Views: 17044

Re: multi-monitor: show xy on correct taskbar?

Thank you works great.
by pulp
24 Oct 2017 22:54
Forum: Bug Reports
Topic: multi-monitor: show xy on correct taskbar?
Replies: 58
Views: 17044

Re: multi-monitor: show xy on correct taskbar?

litte pogram to fix it (long term testing pending...): #include <Windows.h> int main() { //Assuming its the only VB6 program... HWND xp_window = ::FindWindowA("ThunderRT6FormDC", 0); if (!xp_window || !GetWindow(xp_window, GW_OWNER)) { return 0; } SetWindowLongPtr(xp_window, GWLP_HWNDPAREN...
by pulp
24 Oct 2017 22:25
Forum: Bug Reports
Topic: multi-monitor: show xy on correct taskbar?
Replies: 58
Views: 17044

Re: multi-monitor: show xy on correct taskbar?

If i remove the owner for testing with SetWindowLongPtr((HWND)0xWindowIDOfMainWindow, GWLP_HWNDPARENT, 0); it works as accepted. The taskbar button is now moving with the main window. This is not the solution but maybe a hint why it is not working atm. Thanks, that explains it indeed. And it also s...
by pulp
23 Oct 2017 20:47
Forum: Bug Reports
Topic: multi-monitor: show xy on correct taskbar?
Replies: 58
Views: 17044

Re: multi-monitor: show xy on correct taskbar?

it bugs me too. It seems it is not working because the XY main window (class ThunderRT6FormDC) is owend by the window with class ThunderRT6Main. If i remove the owner for testing with SetWindowLongPtr((HWND)0xWindowIDOfMainWindow, GWLP_HWNDPARENT, 0); it works as accepted. The taskbar button is now ...
by pulp
13 Oct 2017 20:46
Forum: Tips & Tricks, Questions & Answers
Topic: Added list columns will get deleted after some days
Replies: 3
Views: 1022

Re: Added list columns will get deleted after some days

Does this all happen in the same tab? Tip: If you want the same settings in all tabs then untick this: Configuration | Styles | Remember list settings per tab I only have one tab per pane. It happen in both tabs. I will try it the "Remember list settings per tab" uncheck. Thanks for the h...
by pulp
26 Sep 2017 21:26
Forum: Tips & Tricks, Questions & Answers
Topic: Added list columns will get deleted after some days
Replies: 3
Views: 1022

Added list columns will get deleted after some days

Hi, i added the columns Size, Created, Modified and Access to the file list. (dual panel mode on). After some days these 3 additional columns are gone. I add it again and there are delete after a few days again. I wonder how i can add columns which will never change? Folder View is disabled. Maybe s...
by pulp
11 Jan 2017 20:23
Forum: Wishes
Topic: Ctrl-Right click: Path as C-String (Escaped) and with Forward-slashes
Replies: 2
Views: 1076

Re: Ctrl-Right click: Path as C-String (Escaped) and with Forward-slashes

While you wait for it you could use a tiny script in the meantime (and just put it on a keyboard shortcut)... "\-escaped" copytext replace(<curitem>, "\", "\\"); "forward-slash" copytext replace(<curitem>, "\", "/"); Thanks, i will run the...
by pulp
11 Jan 2017 19:54
Forum: Wishes
Topic: Ctrl-Right click: Path as C-String (Escaped) and with Forward-slashes
Replies: 2
Views: 1076

Ctrl-Right click: Path as C-String (Escaped) and with Forward-slashes

Hi,

i often need to copy pathes to C++. I would be useful if the Ctrl-Right click menu also offers the path C-String escaped and with forward-slashes instead of backslahes:

"E:\\Path1\\Path2\\file.txt" (\-escaped)
"E:/Path1/Path2/file.txt" (forward-slash


Thanks Jochen
by pulp
27 Jun 2016 22:02
Forum: Tips & Tricks, Questions & Answers
Topic: Override shortcut which is used for menus ALT-E
Replies: 13
Views: 1892

Re: Override shortcut which is used for menus ALT-E

admin wrote:Well, was a nice idea, but: menu caption first letters are used as default accelerators by Windows :( This makes Alt+F still unusable as normal KS if there is a menu "File". Argh. :evil:
Cant you override the shortcut? what programming language and UI framework is xyplorer using?
by pulp
25 Jun 2016 12:12
Forum: Tips & Tricks, Questions & Answers
Topic: Override shortcut which is used for menus ALT-E
Replies: 13
Views: 1892

Re: Override shortcut which is used for menus ALT-E

@highend : thank you for the script
@admin: sounds good. I do not need the accelerators in the info panel, so in my point of view yes.
by pulp
25 Jun 2016 09:38
Forum: Tips & Tricks, Questions & Answers
Topic: Override shortcut which is used for menus ALT-E
Replies: 13
Views: 1892

Re: Override shortcut which is used for menus ALT-E

Thank you for sharing this trick. I changed '&Edit' to 'Ed&it'. Maybe i find a way to automate this string replacement.

pulp