设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

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

[其它] 组合框的记录自动加入

[复制链接]
跳转到指定楼层
1#
发表于 2004-11-9 17:39:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
请教如何在[单位名称]中自动加入?[em01]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2004-11-9 17:50:00 | 只看该作者
两种思路法:1.用addnew方法(值清单),例:Me.CboQuery2.AddItem("aa")2.用查询(表/查询),例:dim tkSQL as stringtkSQL="SELECT * FORM 资料表"with combo1.requery.rowsource=tksqlend with 以上,请指教谢谢!!
3#
发表于 2004-11-9 18:03:00 | 只看该作者
改一下模块中的程序就可以了,注意你使用的是DAO模式Option Compare Database



Function AddToList(strTable As String, strField As String, _

strData As String) As Integer



    ' Add item to table

    ' Returns acDataErrAdded if successful,

    ' acDataErrDisplay on any error

   

    Dim db As Database

    Dim strSQL As String

   

    Set db = CurrentDb

   

    strSQL = "Insert into " & strTable & " (" & strField & ") Values " _

      & "('" & strData & "')"

    Set db = CurrentDb

    db.Execute strSQLExitHere:

    AddToList = acDataErrAdded

    Exit FunctionHandleErr:

    AddToList = acDataErrDisplay

    Select Case Err

        Case Else

            MsgBox Err & ": " & Err.Description, , _

              "Form_HouseholdInventory.AddToList()"

    End Select

    Resume ExitHere

End Function

您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-5-27 15:46 , Processed in 0.088610 second(s), 28 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

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