Ihave developeda toolWindow in my Add-in. I have added a dataGrid to that toolWindow in the userControl. I want the output of some function to be displayed in the dataGrid cell when i run the code.
how can i achieve this?
Is there any function which helps me add the text to the datagrid?
Regards, Nayana
Nayna Thursday, December 11, 2008 9:19 AM
Hi!
To show a text in a datagridview cell:
datagridview1[rownum,colnum].Value="text";
Instead of "text" put the output of your function and that't is.