Hi,
I am developing a vb.net 2005 windows application.For that i wrote connection string in app.config as
and calling this connection in all the forms as
This works perfectly fine in my system.Then i made a setup using Visual Studio and installed in other systems in our local network.Exe is not wrking in other systems.Its showing like
Login Failed for user :Nitha/Guest
Can anyone plse pointout me the problem on this and how to solve this
Regards
Nitha
I am developing a vb.net 2005 windows application.For that i wrote connection string in app.config as
HTML:
<add name="MyCnString" connectionString="packet size=4096;integrated security=True;data
source=Nitha;persist security info=False;initial catalog=payroll" providerName="System.Data.SqlClient"/>
and calling this connection in all the forms as
VB.NET:
connString = ConfigurationManager.ConnectionStrings.("MyCnString").ConnectionString
Conn.ConnectionString = connString
This works perfectly fine in my system.Then i made a setup using Visual Studio and installed in other systems in our local network.Exe is not wrking in other systems.Its showing like
Login Failed for user :Nitha/Guest
Can anyone plse pointout me the problem on this and how to solve this
Regards
Nitha
Last edited by a moderator: