Code:
Sub qgo()
'
' qgo Macro
'
ChDrive "D"
ChDir "D:\Audio\aaatakeAll\"
Dim bip As String
Dim vv1 As String
Range("a1").Select
While Not IsEmpty(ActiveCell)
vv1 = ActiveCell.Value
vv1 = vv1 & "\"
' SetAttr vv1, vbNormal
'MsgBox (vv1)
'End
On Error GoTo ErrorHandler
vlen = Len(ActiveCell.Value)
For t = 1 To vlen
bip = Mid(ActiveCell.Value, t, 1)
If bip = "?" Then
t = vlen
Kill vv1
Kill vv1
'ActiveCell.Value = ""
ActiveCell.Interior.ColorIndex = 15
End If
ErrorHandler:
'error
Resume Next
Next t
ActiveCell.Offset(1, 0).Select
Wend
ChDrive "C"
Range("a1").Select