Blox flickering

We are considering using TTMSFNCBloxControl. But the control has terrible flicker even when I have set double-buffering to it and its parent. Is there a way to remove flickering?

BR

Lasse Koskinen

Is this VCL and are you running your software under remote desktop? If so, check this: Double-buffering and Remote Connections - RAD Studio

I am running the application on desktop (Hyper-V virtual machine), the application has only three controls. Panel1 and TForm are double buffered. Both TTMSFNCBloxControl and TMSFNCBloxSelector1 really badly. Code is here:

TForm43 = class(TForm)
TMSFNCBloxControl1: TTMSFNCBloxControl;
TMSFNCBloxSelector1: TTMSFNCBloxSelector;
Panel1: TPanel;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

procedure TForm43.FormCreate(Sender: TObject);
begin
DoubleBuffered := True;
Panel1.DoubleBuffered := True;
end;

Lasse

Btw. I have also tried without double buffering and flickering is the same.

Please look at the link posted. remote or virtualization software is not the same as running in a real environment.