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
不知道是不是你要的