Hi there mates.
I've tripped over a bug in Delphi 5, 6, 7.
I don't know if it's really a bug, but the behaivor is really strange.
I'm using a TSpeedButton, and in the OnClick event I change the checked property of a TRadioButton. Then I show a message with the procedure "ShowMessage". When closing the message, the newly checked Radiobutton i not checked anymore.
Make a new Application and replace the content in uni1.pas and see for you self...
//Nordlund
I've tripped over a bug in Delphi 5, 6, 7.
I don't know if it's really a bug, but the behaivor is really strange.
I'm using a TSpeedButton, and in the OnClick event I change the checked property of a TRadioButton. Then I show a message with the procedure "ShowMessage". When closing the message, the newly checked Radiobutton i not checked anymore.
Make a new Application and replace the content in uni1.pas and see for you self...
Code:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Buttons, StdCtrls;
type
TForm1 = class(TForm)
RadioButton1: TRadioButton;
RadioButton2: TRadioButton;
SpeedButton1: TSpeedButton;
procedure SpeedButton1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.SpeedButton1Click(Sender: TObject);
begin
RadioButton2.Checked := true;
ShowMessage('Radiobutton 2 became checked! Or?');
end;
end.
//Nordlund