Hi,
Regarding crash under XP - we are inverstigating this issue. Please check if it's version 2.0.1. Version 2.0 did have some problems under XP.
About positioing of the dialog: I do feel that specifying absolute position is what many users want to have. We work in this direction. In this version, please try to set
CustDlgParams.PosParams.FitToScreen property to True. It's designed and tested for single-monitor configuration but I suppose it can be useful for multi-monitor configurations as well.
Next update will contain necessary functionality to implement custom positioning. You will be able to specify absolute screen coordinates like here:
Code:
ApOpenDialog1.CustDlgParams.Position := dpCustom;
ApOpenDialog1.CustDlgParams.PosParams.X := 10;
ApOpenDialog1.CustDlgParams.PosParams.Y := 10;
This update is under construction and I hope it will be available in next few days.
Alex