Getting rid of the plus sign in the datagrid

  • Thread starter Thread starter Robert Bravery
  • Start date Start date
R

Robert Bravery

Hi all
I have a dataset with three tables. On my form I have two grids. Both grids
have the default plus sign on the side of the grid. I have set up my tables
and columns collection the way I want, but I don't need the plus sign to
open any child records. How can i get rid of this.
As I am ne to VB and .net, I tried every thing I can think of in the VS IDE

Thanks
Robert
 
Robert said:
Hi all
I have a dataset with three tables. On my form I have two grids. Both grids
have the default plus sign on the side of the grid. I have set up my tables
and columns collection the way I want, but I don't need the plus sign to
open any child records. How can i get rid of this.
As I am ne to VB and .net, I tried every thing I can think of in the VS IDE

Thanks
Robert
In the properties set allownavigation = false.

Tom
 
Hi,

Robert Bravery said:
Hi all
I have a dataset with three tables. On my form I have two grids. Both
grids
have the default plus sign on the side of the grid. I have set up my
tables
and columns collection the way I want, but I don't need the plus sign to
open any child records. How can i get rid of this.
As I am ne to VB and .net, I tried every thing I can think of in the VS
IDE

DataGrid.AllowNavigation = False

HTH,
Greetings
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top