SQLConnectionControl ConnectingMessage Property Control Documentation
Gets or sets the 'Connecting...' message while the control trying to connect to the database. Use the {SEC} parameter to display remaining seconds.

Namespace: ZsZ_Studio.Controls
Assembly: SQL.Connection.Control (in SQL.Connection.Control.dll) Version: 1.0.4947.20663 (1.0.0.0)
Syntax

public string ConnectingMessage { get; set; }

Property Value

Type: OnlineString
Remarks

Remaining seconds = timeout - elapsed time.
Examples

(VB.NET) This sample shows how to set the message property.
Dim scc As New ZsZ_Studio.Controls.SQLConnectionControl
scc.Location = New Point(10, 10)

scc.ConnectingMessage = "Try connect... {SEC} sec"

Me.Controls.Add(scc)
See Also