DatagridView

  • Thread starter Thread starter Ronny
  • Start date Start date
R

Ronny

Please excuse me if my question is not so clever....
I just learn the stuff of database and datagridview class and I have a
question. After download a sample in CodeProject.com
(http://www.codeproject.com/KB/vista/Firebird_2_and_Images.aspx) and trying
to modify some column header text I saw that the datagridview contains
column header text which I can't find in a string search, in the whole
project ( nor in the database table columns either).
Is there a way to explain that?

Regards
Ronny
 
Hi Ronny,

I have not taken the time to download or install the project myself, but I
will say that calculations can be made on the fly that are displayed in a
datagrid.

Say your table contains value 10 in one row and value 5 in the next. A third
row can be added to the table that is a result of the first two: 10 / 5 = 2!

In a case like that, 2 would not in fact show up anywhere in the code,
because it is calculated on the fly.
 

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