Private Sub mnuDel_Click()
‘删除节点
Dim sKey As String
‘Dim sFile As String
Dim oFS As FileSystemObject
Dim sPathFile As String
Dim sIndex As String
Dim sFlag As String
Set oFS = New FileSystemObject
On Error Resume Next
If MsgBox("确定要删除此类别[" & TreeView1.SelectedItem.Text & "]", vbYesNo, "静态信息") = vbYes Then
sKey = TreeView1.SelectedItem.Key
sIndex = TreeView1.SelectedItem.Index
‘ sFile = sContentPath & sKey & "*" & ".htm"
‘ sFlag = Check(sIndex)
sFlag = Len(sKey) - 1
If RemoveInfo(sKey) Then
TreeView1.Nodes.Remove TreeView1.SelectedItem.Index
sPathFile = Dir(sContentPath)
While (sPathFile <> "")
If Mid(sPathFile, 2, sFlag) = Right(sKey, Len(sKey) - 1) Then
‘ oFS.DeleteFile sPathFile, True
Kill sContentPath & sPathFile
End If
sPathFile = Dir
Wend
If TreeView1.SelectedItem.Children = 0 Then
TreeView1.SelectedItem.Image = "closed"
End If
End If
End If
End Sub
Private Function RemoveInfo(sSearch As String) As Boolean
Dim sSQL As String
Dim objDataAccess As clsDataAccess
RemoveInfo = False
On Error GoTo errHandle
‘ sSQL = "Delete From BCCB_Info Where Id=" & Right(sSearch, Len(sSearch) - 1)
sSQL = "Delete From BCCB_Info Where Id like ‘" & Right(sSearch, Len(sSearch) - 1) & "%‘"
Set objDataAccess = New clsDataAccess
If objDataAccess.ExecSQL(sSQL) Then RemoveInfo = True
Set objDataAccess = Nothing
Exit Function
errHandle:
RemoveInfo = False
Call WriteLog(DEBUG_LEVEL, "frmBCCBInfo.RemoveInfo Error" & err.Description)
Set objDataAccess = Nothing
End Function
原文:http://www.cnblogs.com/gyc19920704/p/5259264.html