Gi I have a DataGridView which populates from an SQL query just fine in default mode
using these table names
[firstName] [varchar](20) NOT NULL,
[lastName] [varchar](20) NOT NULL,
[rentpaid] [decimal](18, 0) NOT NULL,
[datePaid] [date] NOT NULL,
[propRef] [varchar](10) NOT NULL,
[rentDue] [decimal](18, 0) NULL,
I have edited the column headers and set the column names to the same values as my table names yet the data is not showing in form load I have set datagridview.AutoGenerateColumns = False
I know the data is there if I delete datagridview.AutoGenerateColumns = False then the data is shown with the default headings?
any idea why this is happening ?
thanks
m