print all properties of datagridview object to the immediate window

flyinghigh

New member
Joined
Oct 31, 2008
Messages
1
Programming Experience
1-3
(first post - hi everyone)

vb.net 2008
during debug i would like to list all of the properties of a datagridview object to the immediate window.

if i try
?m_dgv_jobdiary
in the immediate window then i get exactly what i am after but it only displays the first 100 and gives the message
< More... (The first 100 of 153 items were displayed.) >

how do i display all(or the remaining ones)
or
enumerate through them myself and print myself

I know i can use a watch, but too many to compare by eye, want to run it through text compare

many thanks

background:
i am trying to resolve an issue with datagridview object and the fact that rowvalidated and rowvalidating seem to fire twice.
Obviosuly a property is changing between the different events.
i would like to be able to print all of the properties of datagridview object to the immediate window for each call and then run a text compare between the two text streams and see what is changing.
 
Back
Top