Dim connInfo As New SqlClient.SqlConnectionStringBuilder(DataBasics.DataSources(0).ConnectionString)Dim msg As String = ""
msg &= connInfo.DataSource & ControlChars.CrLfmsg &= connInfo.InitialCatalog & ControlChars.CrLfmsg &= connInfo.UserID & ControlChars.CrLfmsg &= connInfo.Password & ControlChars.CrLfmsg &= connInfo.IntegratedSecurity.ToString()MsgBox(msg)
Greg's solution is always a good workaround though if this doesn't give you what you need.
Thanks much!
MicroFour.StrataFrame.Data.DataLayer.DataSources.Item(0).ConnectionString.ToString
However, I How can I separedly retrieve the following from my SF project?
Server Name
Database Name
Server Login
Thanks