SQLConnectionControl ConnectionTimeOut Property Control Documentation
Gets or sets the connection timeout of connection in 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 byte ConnectionTimeOut { get; set; }

Property Value

Type: OnlineByte
Remarks

The connection attempt cannot be canceled. The timeout determines the amount of time until the process is trying to connect to the database.
Examples

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

scc.ConnectionTimeOut = 15

Me.Controls.Add(scc)
See Also