-1
I have a VCL project, with a main form in VCL and a button that opens a FMX form with an Edit, but when focusing on Edit the pointer does not appear and does not blink, the problem only happens when I open a form in fmx in a VCL project.
Opening the fmx form:
if Form1 = nil then Form1 := TForm1.Create(self);
form1.show;
but if you click on Edit the cursor already appears?
– Tiago Rodrigues