Hello
I am relatively new to windows development, and for some reason I am finding that the things I found unbelievably simple in web, I can work out for windows.
I have a datagridview and a dataset that I want to bind to it.
I know how to go Datagridview.datasource = my dataset and then datagridview.databind();
This will display all columns in the gridview, but I want to set the order of the columns and manipulate some of the columns value.
In web I would do something like this for each column in the HTML:
<%# DoTranslation(DataBinder.Eval(Container.DataItem, "StatusName") ) %>
This will take the statusname and then send it to a custom function and translate it..
How on earth do I do something similar in windows
Please give me a full example of binding to a grid, or send me in the direction of something that will help
I don't want to use the datasource object.
Bex