Needs to connect application (C#-forms) on client PC with database on server (sql server 2014) i try this (this to make form to i can change from app without coding)
sqlconnection = new SqlConnection(@"Server=" + Properties.Settings.Default.server + "; Database=" + Properties.Settings.Default.database + "; Integrated Security=false; User ID=" + Properties.Settings.Default.ID + "; password="+ Properties.Settings.Default.password +"");
And i type data like this
tcp:PCNAME,port
sql_server_username
sql_server_password
It's working in server but when i try it on client PC didn't work .
HINT: (server username isn't same sql_server username)