Page 1 of 1

*.<DIR> in inputselect() context?

Posted: 08 Apr 2023 23:52
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)?

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

Posted: 09 Apr 2023 00:16
by jupe
As an alternative you can currently use just an asterisk.

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

Posted: 09 Apr 2023 09:50
by highend
Thanks jupe!

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

Posted: 09 Apr 2023 11:19
by admin
Next beta... :cup:

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

Posted: 09 Apr 2023 11:20
by highend
Thanks Don!

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

Posted: 09 Apr 2023 18:11
by highend
v0532, doesn't include the change? Updated but still get a question mark as icon when using *.<DIR>

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

Posted: 09 Apr 2023 18:56
by admin
Ah, damn, it worked here because D:\Temp actually exists on my system. Next beta... :)

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

Posted: 10 Apr 2023 12:48
by highend
Finally working with v0534, thanks again