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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top