I'm writing a VCL component that needs to connect to a database and perform operations there. To support this, I've added a string property for an ADO connection string:
private
pconnectionstring : string;
published
property ConnectionString : string read pconnectionstring write SetConnectionString;
But, I want to allow a developer using my component to generate the connection string in the object inspector, by pressing the "three dots" button, so that the ADO connection string dialog appears, and the developer can generate a connection string, the way it is implemented in the Delphi IDE when you use the ADO components. How do I do this?