Displaying Report.. Need Some Ideas
hi,
i am trying to make a accounting software.. so i want to display reports realistically, like in olden days.. i don want to use data grid view control, even if i want to use then i dont want to display the first row and and first column (which is in button colour and has astrick in it hope u got it).. do u have any idea or any other ideas???
Re: Displaying Report.. Need Some Ideas
The datagridcontrol is highly customizable. Simply set the following properties to False:
Code:
.RowHeadersVisible = False
.ColumnHeaders.Visible = False
.AllowUserToAddRows = False.
Re: Displaying Report.. Need Some Ideas
Quote:
Originally Posted by
cicatrix
The datagridcontrol is highly customizable. Simply set the following properties to False:
Code:
.RowHeadersVisible = False
.ColumnHeaders.Visible = False
.AllowUserToAddRows = False.
thanks a lot.......