change DataSet Row background color

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

want to loop DataSet to change row background color based on data retrieved
from sql db, the color can be blue, yellow, red or purple. Therefore, Is
there any way (vb.net) to change dataset row background color? how to loop
dataset, which is already populated data from database?

Thanks
 
Martin,

A dataset has never a background color. The control that you use to show the
dataset can have a background, but that can even be more if you show the
dataset in the same time using many controls.

I hope this helps,

Cor
 
Cor,

can we use DataSet's table and NewRow() property/method like
DataSet.Tables().NewRow() to change row background color?

Thanks,
 
Martin,

Where can you look at that color in the dataset.
It is a piece in memory.

Cor
 
Back
Top