即使在将我的方向更改为横向之后,我也得到了这个错误。
Feepurpose.Orientation = rptOrientLandscape
Feepurpose.Show我设置的属性
LeftMargin - 1440 RightMargin - 1440 ReportWidth - 8655纸宽- 10800
即时通信工具使用VB6服务包6
发布于 2012-07-28 14:29:43
将Left、Right、top、top、Right、Left设置为零。
发布于 2014-10-15 22:21:18
当您将鼠标移动到“报告区域”的右侧时,您会发现一个图标,该图标是一个“带有左右箭头的垂直线”;当您将鼠标移动到“报告区域”的底部时,您会发现一个图标,它是一个“带有上下箭头的水平线”。只需调整布局并保存报告,看看它是如何工作的。
发布于 2018-11-07 06:07:13
我的问题可以通过删除report.refresh函数来解决。
Set report.DataSource = myRS
report.BottomMargin = 0
report.LeftMargin = 0
report.RightMargin = 0
report.TopMargin = 0
'------ report.refresh
report.Show https://stackoverflow.com/questions/10545911
复制相似问题