|
我从网上下了个定义日期的模块:
Option Compare Database
Option Explicit
Const conMaxSize = 10
Declare Function GetProfileString Lib "kernel32" Alias "GetProfileStringA" (ByVal lpAppName As String, ByVal lpKeyName As String, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Long) As Long
Public Function srRq(d As Date) As String
Dim temp As String
temp = DatePart("yyyy", d) & "-" & DatePart("m", d)
temp = Trim(temp)
If Len(temp) = 6 Then: temp = Left(temp, 5) & "0" & Right(temp, 1)
srRq = temp
End Function
在哪用,怎么用,我不会。
另外我把这个模块拷贝到我的数据库中后,第一次浏览还正常,第二次打开就出现“访问文件错误。网络连接可能已丢失。”的提示。这是为什么?
我把这个模块删除了。我想自己定义一个新的,写代码。可是起完名,根本没发写,就出现相同的错误提示。 |
|