reading dataset problem on server pc / other than developer pc
-
mardi 19 juin 2012 20:00
hi everyone
i have already finished my windows form application and i published as setup to install on server pc
the problem is in reading the dataset that is already working on developer pc
the program works on developer pc, while if installed on another pc,
it has a problem in connecting the datasets that has the job of collecting data from data tables
here is one of the methods i used to fill a combobox using the dataset
'TODO: This line of code loads data into the 'DataSet1.personel2' table. You can move, or remove it, as needed.
Me.Personel2TableAdapter.Fillgetemployee(Me.DataSet1.personel2)
'TODO: This line of code loads data into the 'DataSet1.personel1' table. You can move, or remove it, as needed.
Me.Personel1TableAdapter.Fillgetcustpmer(Me.DataSet1.personel1)
'TODO: This line of code loads data into the 'DataSet1.personel' table. You can move, or remove it, as needed.
Me.PersonelTableAdapter.Fill(Me.DataSet1.personel)
'TODO: This line of code loads data into the 'DataSet1.personel' table. You can move, or remove it, as needed.
Me.PersonelTableAdapter.Fill(Me.DataSet1.personel)
is there a way to make datasets work on another pc,
or else i will have to do the project all over again with a different method, that i find it hard to be performed
thanks for your support

