1
I’m bindando one DataGridView
in a DataTable
what a comeback from my comic book, but even with just 79 records in the DataTable
my DataGridView
is very slow to work and catching on the screen scroll.
Is there any better way for me to accomplish this bind so that it becomes more performatic?
There is more recommended way?
DataTable dtDados = DataAccess.ExecutaComando("SELECT ID, TOPICO_PTBR, TOPICO_ENUS, TOPICO_ESES, CONTEXTO_PTBR, CONTEXTO_ENUS, CONTEXTO_ESES, TEXTO_PTBR, TEXTO_ENUS, TEXTO_ESES, DATALT, REVISADO_ENUS, REVISADO_ESES FROM HELP ORDER BY TOPICO_PTBR");
dataGridView1.DataSource = dtDados;
Number of records returned by query: 79.
include your gridview’s Markup in the question
– Leandro Angelo
What would Markup be? @Leandroangelo
– Victor Laio
the code of the aspx
– Leandro Angelo
It’s in Windows Forms...
– Victor Laio