Delphi Start Database Connection Properties dialog box

Source: Internet
Author: User

Sometimes need the client to configure the server connection, write their own configuration form, it is not as direct use of the system provided by the use of quick and easy

Example one:

The disadvantage of this example is that the value is returned regardless of whether the user has determined or canceled.
procedure Tform1.button1click (sender:tobject); var   connstr:string; begin   connstr:= Promptdatasource (application.handle,adoconnection1.connectionstring);
//function Promptdatasource (parenthandle:thandle; initialstring:widestring): widestring; The //promptdatasource function has two parameters:
Parenthandle: Handle to the parent window.
Initialstring: the initialized string.
  Memo1.Lines.Add (connstr); End;

Example two:

 uses   Data.Win.ADOConEd;  //  must refer to this unit 
//If there is no change to the Click OK button and no return value, The return value will not be generated until modified procedure Tform1.button1click (sender:tobject); var connstr: string begin if Editconnectionstring (ADOConnection1) then begin connstr: = adoconnection1.connectionstring; MEMO1.LINES.ADD (CONNSTR); end ; end ;

Delphi Start Database Connection Properties dialog box

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.