在高度方面,我的连续形态似乎有自己的想法。简单地说;它最多返回三行。
Header height: 0,674cm
Detail height: 0,661cm
Footer height: 1,501cm
这使它看起来像这样:
乍一看似乎完全没问题。在表单视图中打开表单时,它看起来像这样:
现在我知道这些问题很常见,但这是我已经尝试过的:
- Auto resize to 'No'
- Set the height with code
- Use the move command. (Couldn't get that to work)
- Changed all the 'can grow/shrink' settings to yes
- allowed scroll bars
- played with the 'keep together' option
- Changed the border styles
不幸的是,我目前没有选择。
编辑:在此示例中,查询仅返回3行。
答案 0 :(得分:1)
从我可以看到你没有使用最大化的表单,因此move命令应该工作。
这就是我在VBA中使用的内容:
DoCmd.MoveSize , , 20 * 556, 12 * 556
调整表单大小。将其添加到您的Form_Load事件。
这是一个非常直接的电话,但如果你愿意,可以查看its documentation ...