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.ControlsAssembly: SQL.Connection.Control (in SQL.Connection.Control.dll) Version: 1.0.4947.20663 (1.0.0.0)
public string ConnectingMessage { get; set; }
public string ConnectingMessage { get; set; }
Public Property ConnectingMessage As String
Get
Set
Public Property ConnectingMessage As String
Get
Set
public:
property String^ ConnectingMessage {
String^ get ();
void set (String^ value);
}
public:
property String^ ConnectingMessage {
String^ get ();
void set (String^ value);
}
Property Value
Type:
StringRemaining seconds = timeout - elapsed time.
(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)
Dim scc As New ZsZ_Studio.Controls.SQLConnectionControl
scc.Location = New Point(10, 10)
scc.ConnectingMessage = "Try connect... {SEC} sec"
Me.Controls.Add(scc)