You can do this in settings - templates using the variable <xybitness>.
+++ BREAKING NEWS: XYplorer goes twinBASIC +++
-
- Posts: 7
- Joined: 05 Dec 2024 17:17
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
christian777 wrote: ↑08 Jul 2025 17:20You can do this in settings - templates using the variable <xybitness>.

(English in not my native language (french), I use an online translator)
-
- Site Admin
- Posts: 63835
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
Either I can't reproduce it or I didn't understand it.mumajs wrote: ↑08 Jul 2025 13:07 However I dont know if that was already discussed, even I change drive in left pane or right pane it change drive in active pane. I have C: drive in left active pane, but when I click to change drive in right pane it does not change the drive in right pane and get focus but it change the drive in left active pane.

FAQ | XY News RSS | XY Bluesky
-
- Site Admin
- Posts: 63835
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
Can't confirm. Works fine here with French.
FAQ | XY News RSS | XY Bluesky
-
- Posts: 240
- Joined: 21 Oct 2020 23:33
- Location: Through the Looking-Glass
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
It's an exciting time, yesterday I renamed my directories so that I'm using the TwinBasic release by default.
Apart from a couple hiccups with the preview window and base64encode, it all feels like it's coming together. Those inline rename issues from the first release feel like a lifetime ago.
I'm looking forward to full unicode support, that way I can start throwing in a

-
- Site Admin
- Posts: 63835
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
What's that about base64encode?
FAQ | XY News RSS | XY Bluesky
-
- Posts: 240
- Joined: 21 Oct 2020 23:33
- Location: Through the Looking-Glass
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
Yesterday, when I tried to use it on a file, I got an invalid parameter error. The same line worked fine in the VB edition.
I'm not home right now to provide the code, but I believe it was a basic
I'm not home right now to provide the code, but I believe it was a basic
copytext base64encode(,"<selitem>")
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
Yeah, doesn't work with TB, neither with strings nor files
One of my scripts helped you out? Please donate via Paypal
-
- Site Admin
- Posts: 63835
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
Fixed in next beta. (Took me half of the day
)






FAQ | XY News RSS | XY Bluesky
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
SC: In one of my scripts I have apparently been using (for what it is worth) the undocumented command When used from the address line, alone, apparently nothing happens. When used in the original script (immediately after a
Any ideas? Is it better to simply avoid the undocumented
sendkeys
, like this:Code: Select all
sendkeys "{Esc}"; // clear type ahead
focus;
), there is some short message appearing on screen for a split second (kind of a separate small info form, but could not see what it says). Some 2-3 seconds later XY silently dies. This does not happen in the VB version.Any ideas? Is it better to simply avoid the undocumented
sendkeys
? (Basically wanted simply to document this finding.)Win 10 Pro 64bit
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
A simple script like:
with the latest TB beta and a filled LFB doesn't lead to anything but the expected result: a cleared LFB...
Code: Select all
focus "LFB";
sendkeys "{Esc}";
One of my scripts helped you out? Please donate via Paypal
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
Sorry for late answer, however the issue is solved in the latest x64 betaadmin wrote: ↑09 Jul 2025 09:17Either I can't reproduce it or I didn't understand it.mumajs wrote: ↑08 Jul 2025 13:07 However I dont know if that was already discussed, even I change drive in left pane or right pane it change drive in active pane. I have C: drive in left active pane, but when I click to change drive in right pane it does not change the drive in right pane and get focus but it change the drive in left active pane.![]()

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
Thanks for checking highend! Yes, I agree: In my case the issue is sometimes not happening, but mostly it does. I could not recognize any system in it. Meanwhile I have been recording the screen and have found out that, when it happens, what appears briefly is a yes/no dialog from Windows (sic!), entitled - in my case in German - "Hiermit werden alle anstehenden Übertragungen abgebrochen.", containing the question "Sind Sie sicher, dass Sie alle Übertragungen abbrechen möchten?". Complete bullshit, as it seems. A few possibly relevant pages that I was able to found about such a message did not help. However, my current workaround is to usehighend wrote: ↑10 Jul 2025 16:56A simple script like:with the latest TB beta and a filled LFB doesn't lead to anything but the expected result: a cleared LFB...Code: Select all
focus "LFB"; sendkeys "{Esc}";
#675; #675;
instead. In that way the same intended task seems to be achieved, while the issue apparently never appears.Win 10 Pro 64bit
Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++
If you are just trying to remove a active LF, I think I'd recommend this way instead
@Don: I noticed something a little strange in x64, cmd seems not to inherit its enviro vars, eg
filter , 8;
@Don: I noticed something a little strange in x64, cmd seems not to inherit its enviro vars, eg
goto "!set";