Office中国论坛/Access中国论坛

标题: 如何将窗体空间的值传递到另一个窗体 [打印本页]

作者: shilibi13    时间: 2009-2-3 21:25
标题: 如何将窗体空间的值传递到另一个窗体
本帖最后由 shilibi13 于 2009-2-3 21:26 编辑

如何将窗体1中的"按钮abc"和"按钮def"的值传递到窗体2的文本框text0中,就是说如果点击“按钮abc”,就把按钮标题上的文字abc放到要打开的窗体2中的文本框text0中,请大家赐教!
作者: ACMAIN_CHM    时间: 2009-2-3 22:03
Option Compare Database
Option Explicit

Private Sub Command5_Click()

    DoCmd.OpenForm "窗体2"
    Forms("窗体2").Text0.Value = Me.Command5.Caption
   
End Sub

Private Sub Command6_Click()
    DoCmd.OpenForm "窗体2"
    Forms("窗体2").Text0.Value = Me.Command6.Caption
End Sub





******************
*  一切皆有可能  *
******************


QQ群 48866293 / 12035577 / 7440532 / 13666209
http://forum.csdn.net/SList/Access .
http://www.accessbbs.cn/bbs/index.php .
http://www.accessoft.com/bbs/index.asp .
http://www.access-programmers.co.uk/forums .
http://www.office-cn.net .
.
http://www.office-cn.net/home/space.php?uid=141646 .
作者: boy1dl    时间: 2009-2-4 08:40
我看我学
作者: shilibi13    时间: 2009-2-4 20:29
很感谢!
作者: foreseer201    时间: 2009-6-10 14:47
本帖最后由 foreseer201 于 2009-6-10 15:20 编辑

使用2楼的方法:
报“无效使用NULL” 错误。烦请再指点,多谢。
作者: foreseer201    时间: 2009-6-11 09:37
自己顶一下
作者: leijiqiang    时间: 2009-8-1 11:04
小技巧




欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/) Powered by Discuz! X3.3