alander
Well-known member
In my app.config it is set that it will read Wages Application.mdb, however, when i open up a file dialog, the directory changes and my application cant find wages application.mdb anymore
I would like to fix it to Application.StartupPath\Wages Application.mdb, however this is xml and i don't know how to fix this
By the way i am using VBEE (click once deployment) so a setup project wouldnt help in my case.
any help will be appreciated
I would like to fix it to Application.StartupPath\Wages Application.mdb, however this is xml and i don't know how to fix this
By the way i am using VBEE (click once deployment) so a setup project wouldnt help in my case.
any help will be appreciated
VB.NET:
<connectionStrings>
<add name="Wages_Application.My.MySettings.Wages_ApplicationConnectionString"
connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Wages Application.mdb"
providerName="System.Data.OleDb" />
</connectionStrings>
Last edited: