moongirl129
Programmer
I am building an app which consists of two forms - one for data entry (datagridview databound to a custom object) and one for display on a separate display screen (hence the separate form). Is it possible to use databindings across forms when using a custom user control? The problem I have is that I can't use a datagridview for the second screen as the data needs to be displayed in multiple columns, so I'm iterating through a list of items in a bindinglist and adding a label to a flowpanel for each. Is there a more sophisticated way of doing this so that I can use databinding while still keeping total flexibility on the design?