Posts by Coutj • 91 points
3 posts
-
0
votes1
answer98
viewsA: How to add more than one Datarelation to a Dataset in C#?
I resolved so: DataTable parentDtbl = new DataTable(); DataTable childDtbl = new DataTable(); parentDtbl = RetornarData1(); childDtbl = RetornarData2(); DataSet dtSet = new DataSet();…
-
0
votes1
answer98
viewsQ: How to add more than one Datarelation to a Dataset in C#?
Is it possible to add more than one Datarelation to a Dataset? Need three columns in separate tables to be related.
-
8
votes1
answer399
viewsQ: How to export a Datatable to Excel without formatting the information?
I need to export a number to Excel, but it always formats in an inappropriate way. Expected form: -8,0902322222234 Received: -809.023.222.222.234 The data from the Datatable are typed with string.…