本文介绍了简单问题 - 数据网格和类型化数据集的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我做了很多搜索并阅读了一些关于

datagrids的内容。但我无法找到我简单的问题的答案,我怎样才能在表中显示我想要的

列?例如,我写了这个SQL查询:

OleDbDataAdapter1.SelectCommand.CommandText =& _

"从tblIllness中选择illNameE"

OleDbDataAdapter1.Fill(DsIllness1)


但是在我的数据网格中,我得到了( null)对于其他ccolumns而不是
隐藏不受欢迎的列。


另一个问题:数据网格是windows窗体中的最佳选择

to显示可点击列表数据?


TIA

-

Sabre S.

I did a lot of searches and read something about
datagrids. But I couldn''t find the answer of my simple
question, how can I show only my desired columns of
a table? for example I wrote this sql query:

OleDbDataAdapter1.SelectCommand.CommandText = & _
"Select illNameE From tblIllness"
OleDbDataAdapter1.Fill(DsIllness1)

But in my datagrid, I get (null) for other ccolumns instead
of hiding undesired columns.

Another question: Is datagrid best choice in windows form
to show a list of "clickable" data?

TIA
--
Saber S.
http://maghalat.com

推荐答案








这篇关于简单问题 - 数据网格和类型化数据集的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 10:39