《VB6数据库开发指南》所有的例程的源码

源代码在线查看: attach.bas

软件大小: 1252 K
上传用户: bi_yangfeng
关键词: VB6 数据库 开发指南 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				Attribute VB_Name = "basAttach"
				Option Explicit
				
				Public Function GetFileName(ByVal strFullPath As String) As String
				    Dim I As Integer, strTemp As String
				    
				    If Len(strFullPath) Then
				        For I = Len(strFullPath) To 1 Step -1
				            If Mid(strFullPath, I) = "\" Then strTemp = Right(strFullPath, Len(strFullPath) - I)
				        Next
				        If strTemp = "" Then strTemp = strFullPath
				    End If
				    
				    GetFileName = strTemp
				End Function
				
							

相关资源