设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

12
返回列表 发新帖
楼主: xxxwk
打印 上一主题 下一主题

[窗体] 窗体的两个小问题,,求大家帮忙解决.自动编号和组合框不能录入内容,多谢

[复制链接]
11#
 楼主| 发表于 2007-12-30 11:58:05 | 只看该作者
之乎者也,,呜呼哀哉,,再自己顶一下.
12#
发表于 2007-12-30 14:21:08 | 只看该作者
第一个问题给予解答;下面是一个自动编号的函数,你可利用,需要引用ADO
'===============================================================================
'-函数名称:         autoID
'-功能描述:         自动编号 ,
'-输入参数说明:     参数1:tblname 表名
'                   参数2:fldname 字段名
'                   参数3:intlength增长号的长度
'                   参数4:prefix 前缀(可选参数)
'                   参数5:dateformat时间前缀(可选参数)
'-返回参数说明:     可以按时间自增长编号, 如果没有时间就自增长编号
'-使用语法示例:     AutoID("型体编号表", "型体编号", 4, "GL")
'                   AutoID("型体编号表", "型体编号", 4)
'                   AutoID("型体编号表", "型体编号", 4, "GL","yyyymmdd")
'-参考:
'-使用注意:
'-兼容性:           2000,XP,2003
'-作者:             Victor Duane
'-更新日期:        2007-12-5 17:03
'===============================================================================
Function AutoID(tblName As String, fldName As String, intLength As Integer, Optional Prefix As String = "", Optional DateFormat As String = "") As String
'自动编号 , 可以按时间自增长编号, 如果没有时间就自增长编号
Dim rs As New ADODB.Recordset
Dim cn As New ADODB.Connection

Dim intDate As Integer
Dim intPrefix As Integer

Dim strDate As String
Dim strToday As String
Dim OldDate As String

'如果DateFormat为空,当天日期为空,否则为当天日期
If Len(DateFormat) = 0 Then
    strToday = ""
Else
    strToday = Format(Date, DateFormat)
End If

strDate = strToday
intDate = Len(strDate) '取得时间的长度
intPrefix = Len(Prefix) '取得前缀的长度

Set cn = CurrentProject.Connection
Dim strSQL As String
strSQL = "select * from " & tblName & " order by " & fldName
rs.Open tblName, cn, 1, 2

Debug.Print rs.RecordCount
If rs.RecordCount > 0 Then
    rs.MoveLast
    '取得最大值的时间前缀
    OldDate = Nz(Mid$(rs(fldName), intPrefix + 1, intDate), "")
    '判断新增的值是否跨时间
    If strToday = OldDate Then
        AutoID = Prefix & strDate & Format(Val(Right$(rs(fldName), intLength) + 1), String(intLength, "0"))
    Else
        AutoID = Prefix & strDate & String(intLength - 1, "0") & "1"
    End If
Else
    AutoID = Prefix & strDate & String(intLength - 1, "0") & "1"
End If

rs.Close
cn.Close
Set rs = Nothing
Set cn = Nothing
End Function
我的自动编号的函数
13#
发表于 2007-12-30 14:22:08 | 只看该作者
第二个问题,我没看明白你的要求,无法深入,
14#
 楼主| 发表于 2007-12-30 14:46:51 | 只看该作者
多谢版主了....第二个问题我没说得明白,不好意思.
详细:  在组合框中,如果要输入其下拉列表中没有的内容,则不能实现.更改这个组合框"限于列表"为否不成功.提示要先设置Columwidths属性,再设置Limittolist的属性..这个问题总搞不定.
麻烦再看看.
15#
发表于 2007-12-30 15:06:17 | 只看该作者
汗,我不知道你想怎么搞,哪个窗体哪个控件,实现什么功能,数据储存到哪个表 我真是不知道如何下手
16#
 楼主| 发表于 2008-1-1 14:53:41 | 只看该作者
版主,新年好.
我的意思是: 把"检验报告登记录入窗体"中的"检验结果"下面的组合框中,能不能实现输入列表没有的内容.简单点说就是如何在组合框中输入其它数据和内容.我怕没说清楚,说得太复杂了,反而搞得你们没看明白,不好意思
17#
发表于 2009-2-28 12:29:01 | 只看该作者
kan kan ba
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2025-1-10 12:02 , Processed in 0.100550 second(s), 29 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

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