I'm creating a few component instances during initialization of a Scripter based IDE-like application, and adding them to the Scripter design-time form with InsertComponent like this
var F := TcrackTIDEScriptForm(IDEEngine1.Files.FindByFormName('Form2').Form);
var T := TnxTable.Create(nil);
T.Name := 'nxTable1';
F.InsertComponent(T);
However, that makes all the components end up on top of each other in the upper left corner, which is awkward for the user. Is there any way to move the components programmatically before opening the design-time form?