Unknown Object

Ok. I kind of need everyone to use their imaginations on this one and kind of help me out and investigate for me. It will be greatly appreciated. Ok, I think mostly everyone here has Visual C# 2005 right Ok, so I will use that as the example. Ok, now you know when you get an error and the "Error List" comes up. I need to know what the object is. Ya know, how it says:
_____________________________________________________________________
|   | Description            |File            |Line     |Column         |Project                
-------------------------------------------------------------------------------
| 1 |} expected             |Form1.cs    |197      |26               |Project
-------------------------------------------------------------------------------

-------------------------------------------------------------------------------


Can someone tell me what object I would use to be able to have that type of object. Where it has the title bars on top like "Description, and "file". Kind of like list box almost. I hope this explained what I am talking about and what I am trying to get. If you need to please take a look at Visual C# and purposly make an error to see the type of object I am talking about. Thank youj. 


Answer this question

Unknown Object

  • Harsh

    Looks like a DataGridView to me...

  • Marconi AS Junior

    Yes. It does, but the difference is, on a datagridview, when a field is selected, it is highlighted as if I am trying to copy and paste it, I need the fields to be selected is if it were a listbox.

  • Skar

    Set the SelectionMode property of the DataGrid control to SelectFullRow and make the row read only.

  • Shuvro Mazumder

    And how exactly would I do that please

  • Unknown Object