设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 1181|回复: 2
打印 上一主题 下一主题

[Access本身] [请教]ACCESS可不可以动态生成控件啊?

[复制链接]
跳转到指定楼层
1#
发表于 2004-7-30 17:16:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
各位大虾,我想问一下在ACCESS中可不可以动态的生成控件啊?

比如我想做个循环来创建10个控件,然后窗体显示可不可以?

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅

点击这里给我发消息

2#
发表于 2004-7-30 18:21:00 | 只看该作者
可以用CreateControl 方法,但是只能在mdb中用,MDE不能用,以下是帮助里的示例:示例下面的示例首先基于“订单”表创建一个新窗体,然后使用 CreateControl 方法在窗体上创建文本框控件和附属标签控件。
  1. Sub NewControls()    Dim frm As Form    Dim ctlLabel As Control, ctlText As Control    Dim intDataX As Integer, intDataY As Integer    Dim intLabelX As Integer, intLabelY As Integer    ' Create new form with Orders table as its record source.    Set frm = CreateForm    frm.RecordSource = "Orders"    ' Set positioning values for new controls.    intLabelX = 100    intLabelY = 100    intDataX = 1000    intDataY = 100    ' Create unbound default-size text box in detail section.    Set ctlText = [b]CreateControl([/b]frm.Name, acTextBox, , "", "", _        intDataX, intDataY[b])[/b]    ' Create child label control for text box.    Set ctlLabel = [b]CreateControl([/b]frm.Name, acLabel, , _         ctlText.Name, "NewLabel", intLabelX, intLabelY[b])[/b]    ' Restore form.    DoCmd.RestoreEnd Sub
复制代码
3#
 楼主| 发表于 2004-7-30 22:09:00 | 只看该作者
[em17]谢谢,在尝试中
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-11-11 00:51 , Processed in 0.077930 second(s), 27 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表