+++ BREAKING NEWS: XYplorer goes twinBASIC +++

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Online
christian777
Posts: 7
Joined: 05 Dec 2024 17:17

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by christian777 »

Marc wrote: 08 Jul 2025 16:55 PS.
I think it would be a good idea to add x64 after the version number in the title bar as long as the VB x86 version still exists (for those who use both versions as long as the x64 version is not finished).
You can do this in settings - templates using the variable <xybitness>.

Marc
Posts: 43
Joined: 04 Jun 2023 17:41

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by Marc »

christian777 wrote: 08 Jul 2025 17:20
Marc wrote: 08 Jul 2025 16:55 PS.
I think it would be a good idea to add x64 after the version number in the title bar as long as the VB x86 version still exists (for those who use both versions as long as the x64 version is not finished).
You can do this in settings - templates using the variable <xybitness>.
:appl:
(English in not my native language (french), I use an online translator)

admin
Site Admin
Posts: 63835
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by admin »

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.
Either I can't reproduce it or I didn't understand it. :?

admin
Site Admin
Posts: 63835
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by admin »

Marc wrote: 08 Jul 2025 16:55 Check for update does not work if language selected is french but is OK if back to english.
in french language XY doesn't even open the Internet connection (whatever beta with Ctrl or not)
Can't confirm. Works fine here with French.

WirlyWirly
Posts: 240
Joined: 21 Oct 2020 23:33
Location: Through the Looking-Glass

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by WirlyWirly »

admin wrote: 07 Jul 2025 15:52...I think the 64-bit version will officially be released by the end of July 2025...
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 🕺 every time I call echo :tup:

admin
Site Admin
Posts: 63835
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by admin »

What's that about base64encode?

WirlyWirly
Posts: 240
Joined: 21 Oct 2020 23:33
Location: Through the Looking-Glass

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by WirlyWirly »

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 copytext base64encode(,"<selitem>")

highend
Posts: 14328
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by highend »

Yeah, doesn't work with TB, neither with strings nor files
One of my scripts helped you out? Please donate via Paypal

admin
Site Admin
Posts: 63835
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by admin »

Fixed in next beta. (Took me half of the day :blackstorm: :cup: :cup: :cup: :cup: :cup: )

Borut
Posts: 1459
Joined: 19 Oct 2010 19:29

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by Borut »

SC: In one of my scripts I have apparently been using (for what it is worth) the undocumented command sendkeys, like this:

Code: Select all

 sendkeys "{Esc}";  // clear type ahead
When used from the address line, alone, apparently nothing happens. When used in the original script (immediately after a 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

klownboy
Posts: 4354
Joined: 28 Feb 2012 19:27
Location: Windows 11, 24H2 Build 26100.4351 at 100% 2560x1440

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by klownboy »

Borut wrote: 10 Jul 2025 16:17Is it better to simply avoid the undocumented sendkeys?
Undocumented, but it is widely used.

highend
Posts: 14328
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by highend »

A simple script like:

Code: Select all

    focus "LFB";
    sendkeys "{Esc}";
with the latest TB beta and a filled LFB doesn't lead to anything but the expected result: a cleared LFB...
One of my scripts helped you out? Please donate via Paypal

mumajs
Posts: 71
Joined: 03 Nov 2018 16:47
Location: Czech Republic

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by mumajs »

admin wrote: 09 Jul 2025 09:17
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.
Either I can't reproduce it or I didn't understand it. :?
Sorry for late answer, however the issue is solved in the latest x64 beta :tup:

Borut
Posts: 1459
Joined: 19 Oct 2010 19:29

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by Borut »

highend wrote: 10 Jul 2025 16:56A simple script like:

Code: Select all

    focus "LFB";
    sendkeys "{Esc}";
with the latest TB beta and a filled LFB doesn't lead to anything but the expected result: a cleared LFB...
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 use #675; #675; instead. In that way the same intended task seems to be achieved, while the issue apparently never appears.
Win 10 Pro 64bit

jupe
Posts: 3270
Joined: 20 Oct 2017 21:14
Location: Win10 22H2 120dpi

Re: +++ BREAKING NEWS: XYplorer goes twinBASIC +++

Post by jupe »

If you are just trying to remove a active LF, I think I'd recommend this way instead filter , 8;

@Don: I noticed something a little strange in x64, cmd seems not to inherit its enviro vars, eg goto "!set";

Post Reply