Original Post
hallo, just a quick bit of advice needed. I've got a Windows form based interface which allows me to inspect and modify all class data within my Game Engine. It consists of a TreeView on the Left listing the data objects, and on the right is a panel that gets filled with a set of attribute controls to allow you to modify the attributes of the data objects. So far so good, it's all working fairly nicely apart from one thing, which hopefully someone may be able to give me some advice about. At the moment, i'm simply creating CheckBoxes, TextFields etc in the right panel to handle the attributes. However : a) When re-creating the controls (after selecting a new data object) you can see the controls being re-created and deleted. (It seems like there's blatantly a better way to do this stuff) b) This sucks big time when trying to display an array ;) I'm assuming that there are far better controls to use for displaying data in this fashion, however the DataGridView & DataSet only seem to work with Sql (as far as i can tell)? Anyone got any better recommendations?