首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

vb的DataReport,能不设置数据源使用吗?该怎么处理

2012-02-06 
vb的DataReport,能不设置数据源使用吗?如题。[解决办法]空白介绍信:  Dim rst As New RecordsetWith rst.Fi

vb的DataReport,能不设置数据源使用吗?
如题。

[解决办法]
空白介绍信:

  Dim rst As New Recordset
With rst
.Fields.Append "name ", adBSTR, 255 '设置字段名称和属性
.CursorType = adOpenStatic
.LockType = adLockOptimistic
.Open
End With

'添加数据
rst.AddNew
rst.Fields(0)= vbNullString
rst.Update

DataReport2.Sections( "Section1 ").Controls( "Label1 ").Caption = "介绍: "
DataReport2.Sections( "Section1 ").Controls( "Label2 ").Caption = "前往办理: "
   '用一个Label1也可以,结构自己定义

Set DataReport2.DataSource = rst
DataReport2.Show

不知道是不是你要的

热点排行