Hello All:
I have been working on a C# program utlizing the new Web Services. What I want to do is populate and create new rows in a datagridview. I have been searching the web for some sample code, but have not been able to find any.
The only goal I have is use the readmultiple function of webservices from a page and have the datagridview populate with the results.
Thank you for your help in advanced!!
Aaron Kerstiens
0
Comments
Do you want to make any transactions from the WEB into the database through Gridview or just for viewing the Records in Gridview control??
Ahmedabad, Gujarat, India
E Mail : ravi.thakkar@hotmail.com
Example of code:
WS[] Record = WS.ReadMultiple(filters, null, 100);
{
foreach (WS Record in Records)
{
Add a row to a Grid (WS.Field);
}
}
DataGrid.DataSource = WS.ReadMultiple(filters, null, 0);
Group Program Manager, Client
Microsoft Dynamics NAV
http://blogs.msdn.com/freddyk
The information in this post is provided "AS IS" with no warranties, and confers no rights. This post does not represent the thoughts, intentions, plans or strategies of my employer. It is solely my opinion.
Group Program Manager, Client
Microsoft Dynamics NAV
http://blogs.msdn.com/freddyk
The information in this post is provided "AS IS" with no warranties, and confers no rights. This post does not represent the thoughts, intentions, plans or strategies of my employer. It is solely my opinion.
Again Many Thanks!!!!!!!!
I am having a similar situation, did you use an intermediate data element? If you dont mind could you post your solution please?
Thank you,
Amol