如何在VB6中控制报表的纸张宽度(突破A4纸)?急急急!

--茶-- 2000-08-22 07:57:00
VB6的数据报表设计器是一个非常优秀的工具,但是,我只能输出VB4大小的报表,即ReportWidth不能太大,否则程序将出错。我想输出A3(横向)报表,怎样实现。请各位高手帮忙。
...全文
197 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
playyuer 2000-08-22
  • 打赏
  • 举报
回复
解决ReportWidth不能太大:
方 法 1:
纸宽 : Printer.Width
可 编 写 如 下 代 码 :
Private Sub DataReport_Initialize()
Const iW =3 '缇 ,误 差 调 整
DataReportX.ReportWidth =Printer.Width- DataReportX.LeftMargin-DataReportX.RightMargin -iW
End Sub

方 法 2:
只 需 在 Windows9x的 开 始 目 录 中 选 择 设 置 打 印 机 , 然 后 选 中 你 使 用 的 打 印 机 , 修 改 其 属 性 中 纸 张 大 小 及 打 印 方 向 即 可 解 决 问 题 。


解决横向打印:
方 法 1: 装VB6SP4,DataReport新添了Orientation属性

参 考 :微 软 的 Knowledge Base的 文 章:“Q197915 PRB Report Width is Larger than the Paper Width”
Q253555 - FIX Error Message Report Width Is Larger Than the Paper Width on Exporting Data Report.htm
方 法 2:
用 一 个 CommonDialog:

Private Sub Command1_Click()
CommonDialog1.Flags = cdlPDPrintSetup
CommonDialog1.CancelError = True
On Error GoTo ErrorHandle:
CommonDialog1.ShowPrinter '必 须 Show出 来 且 "确 定 "才 能 修 改 纸 方 向
'Me.Refresh
'Command1.Refresh
On Error GoTo 0
DataReport1.Show vbModal
ErrorHandle:
End Sub
下 载 例 程 rptdemo.zip。
方 法 3: 引 用 PageSet.Dll(参 考 :微 软 的 Knowledge Base的 文 章:“Q198901 Sample PageSet_exe Programmatically Changes Default Printer Orientation” 并 下 载 PageSet.exe,或 orientation.zip。
但 有 时 报 出 "报 表 宽 度 大 于 纸 的 宽 度 "的 错 误 。 (参 考 :微 软 的 Knowledge Base的 文 章:“Q197915 PRB Report Width is Larger than the Paper Width” (我 认 为 没 什 么 用 ,不 知 所 云 ))
该 方 法 并 未 真 正 将 Printer改 方 向 (即 :Printer.Width与 Printer.Height并 未 交 换 ),因 此 我 建 议 :
Private Sub DataReport_Initialize()
Const ErrX = 0 '误 差 经 验 值
Dim adoRecordset As New ADODB.Recordset
adoRecordset.Fields.Append "Fld1", adVariant, , adFldIsNullable + adFldMayBeNull
adoRecordset.Open
Set Me.DataSource = adoRecordset
'下 一 句 非 常 关 键 重 要 ,可 以 极 大 地 减 少 "报 表 宽 度 大 于 纸 的 宽 度 "的 错 误 !
'当 Form1.Option1.Value为 真 时 "横 打 ",否 则 "纵 打 "
Me.ReportWidth = IIf(Form1.Option1.Value, MyMax(Printer.Width, Printer.Height),
MyMin(Printer.Width, Printer.Height)) - Me.LeftMargin - Me.RightMargin-ErrX
End Sub
Private Function MyMax(a As Long, b As Long) As Long
MyMax = IIf(a > b, a, b)
End Function
Private Function MyMin(a As Long, b As Long) As Long
MyMin = IIf(a < b, a, b)
End Function
这 样 就 可 以 极 大 地 减 少 "报 表 宽 度 大 于 纸 的 宽 度 "的 错 误 !
注 :"横 打 "即 :打 印 以 纸 的 宽 边 作 顶 部 。 "纵 打 "即 :打 印 以 纸 的 窄 边 作 顶 部 。

zzssyyvc 2000-08-22
  • 打赏
  • 举报
回复
你用过printer对象吗?

809

社区成员

发帖
与我相关
我的任务
社区描述
VB 多媒体
社区管理员
  • 多媒体
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧