*.<DIR> in inputselect() context?

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
highend
Posts: 14926
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

*.<DIR> in inputselect() context?

Post by highend »

It's late and I'm unsure if it ever worked or not...

This one works as expected:

Code: Select all

    $list = <<<>>>
Temp|D:\Temp|*.<DIR>
Tools|D:\Tools|:ghost
    >>>;
    $sel = popupmenu($list, 6:=<crlf>, 7:="|");
This one does not (no *.<DIR> icon is shown for the first entry):

Code: Select all

    $list = <<<>>>
Temp|D:\Temp|*.<DIR>
Tools|D:\Tools|:ghost
    >>>;
    $sel = inputselect("Select task(s)...", $list, <crlf>, 1+2+1024, , 150, 350, , , ":sync");
If it's not a bug (and I didn't mess something up), can you please make *.<DIR> available for inputselect() as well (when used with 1024 ofc)?
One of my scripts helped you out? Please donate via Paypal

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

Re: *.<DIR> in inputselect() context?

Post by jupe »

As an alternative you can currently use just an asterisk.

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

Re: *.<DIR> in inputselect() context?

Post by highend »

Thanks jupe!
One of my scripts helped you out? Please donate via Paypal

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

Re: *.<DIR> in inputselect() context?

Post by admin »

Next beta... :cup:

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

Re: *.<DIR> in inputselect() context?

Post by highend »

Thanks Don!
One of my scripts helped you out? Please donate via Paypal

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

Re: *.<DIR> in inputselect() context?

Post by highend »

v0532, doesn't include the change? Updated but still get a question mark as icon when using *.<DIR>
One of my scripts helped you out? Please donate via Paypal

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

Re: *.<DIR> in inputselect() context?

Post by admin »

Ah, damn, it worked here because D:\Temp actually exists on my system. Next beta... :)

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

Re: *.<DIR> in inputselect() context?

Post by highend »

Finally working with v0534, thanks again
One of my scripts helped you out? Please donate via Paypal

Post Reply