Question info from DataGridView ot other form?

Joe1

Active member
Joined
Dec 4, 2012
Messages
37
Programming Experience
Beginner
Hello,

I am trying to load information entered in a DataGridView form, to show as 'read only' information displayed in another windows form. So as the user types information into the DataGridView box, then selects the OK button. the information they types/selected will be shown in a new windows form?

Is this possible?
Can anybody help?
 
yes, just set the datagridview read only property to true, on your second form(form_load)

example : DataGridView.ReadOnly = True
 
Back
Top