As long as you have the firewall set to allow the port that your SQL Server instance is using, all you need to do is change Data Source from =Server name
to =IP,Port
ie, in the connection string use something like this.
Data Source=190.190.1.100,1433;
You should not have to change anything on the client side.