qual_list= Files In Directory( "C:\Users\mlachhab\Documents\20220309 - Exercice Scripting Magid\REPERTOIRE A" );
nw= New Window( "Ex1",
V List Box(
Outline Box( "Choix_Du_Dossier",<<BackgroundColor( 19 );
dt=list Box( qual_list);
),
obj= dt << get selected;
If(obj << Selected , obj << Deselect);
),
Lineup Box( N Col( 2 ), spacing( 20 ),
Button Box( "OK",
nw << Close Window ),
Button Box( "ANNULER",
nw << Close Window ),
),
);
Hello, I want to select/deselect files in my List box, but when I select one file, I can't deselect it.