members

C# accessing form member from separate class

Hi all, I need some advice please on the best way to achieve a particular outcome... My scenario... I have a Form1 class, which is my main Form with a picture box on it. I have a second class called camera that using an event handler grabs a frame (bitmap) from my webcam. I then want to pass this frame to the picture box in the main...

C++, unmanaged, class, members: How (if at all) can I list all the members in a class?

Possible Duplicate: Iterate through struct variables. So I have a header file and a code file. The class is representation of a View that will be queried from stored proc. For each col. in view there is one data member in class. Currently in code we have something like this: Load( Reader reader) { m_col1 = reader("m_col1...