datagrid in c#

  • Thread starter Thread starter r.bihain
  • Start date Start date
R

r.bihain

when using datagrid in c#:
a blank field is replace vy the (null) value.
How is it possible to avoid this?
 
when using datagrid in c#:
a blank field is replace vy the (null) value.
How is it possible to avoid this?

You have to define a DataGridTableStyle. That style contains a
collection of DataGridColumnStyle objects. The NullText property of the
DataGridColumnStyle allows you to specify what is displayed in a null
field.

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
 
Back
Top