DataGridView, Adding '...' Browse Button

JaedenRuiner

Well-known member
Joined
Aug 13, 2007
Messages
340
Programming Experience
10+
Okay,

so i have a DGV, that will be storing my application paths, you know like a default save/load directory, and other location data that is necessary to run the program. This was done easier by the DataSet creation, allowing me to treat all my settings like a dataset and then saving them to an XML document, and it all is nice and easy. However, For the ease of the user (and for my desire to have my app look nice/professional) I wanted to add the little "..." browse button at the edge of the TextBox control within the datagridview. Is that Possible to even do?

Thanks
 
Add a button column. (DataGridViewButtonColumn)
 
Back
Top