Group of WebSpeedButtons (TMS Web)

I’m trying to use a frame with group of webspeedbuttons with AllowAllUp property to True ,group index to 1 and try to access the button with down property is True, I get the following error message.

This is the code

function TFrame11.GetDimension: UniCodeString;
var
i: Integer;

begin
Result := '';
for i := Low(v_buttons) to High(v_buttons) do
begin
if v_buttons[i].Down
then
begin
//v_buttons[i].Style := bsSplitButton;
v_buttons[i].Caption := 'Selected';
Result := v_buttons[i].Caption;
exit
end
end

end;

I cannot reproduce this.
Test project attached.
Project1.zip (5.9 KB)

I see this support question was also sent by direct email. Please refrain from sending the same support questions via 2 channels. It only unnecessarily increases our workload and as a result decreases response times for all users.

1 Like