SetMenuProp() not working anymore

orionmetrics

New member
Hi got an issue I cannot seem to get around, nor can I find any documentation for it, but on the new exeoutput v2.1 these Hscript functions no longer work to disable and enable a menu item (used to work on v1.7).

procedure DisableMenu(menu: string);
begin
SetMenuProp(“muser_”+menu, “Enabled”, “FALSE”);
end;

procedure EnableMenu(menu: string);
begin
SetMenuProp(“muser_”+menu, “Enabled”, “TRUE”);
end;

Could someone tell me what the equivalent would by for version 2.1 of exeoutput ?

Thanks.
 
thanks for the update, but I don’t appear to have this general demo file or option on the software, is this for a new release post version 2.1 ?
 
It’s in a different folder “chromiumdemo” and it still ships with ExeOutput, so you should be able to find it on your PC.
 
Back
Top