Tenho na minha BD um botão que ao fazer click abre uma pasta dos meus documentos, que contém documentos PDF.
Pergunto:
É possivel criar uma ListBox num formulário na BD, essa LisBox listar todos os PDF contidos nessa pasta ?
Obrigado
C:\PDF\
acarlosvalente gosta desta mensagem
Sub SelecionaReg()
On Error Resume Next
Dim i As Variant
Dim strProcura As String, intPos As Integer
Dim strList As String
Dim j As Variant
Dim h As Variant
strProcura = UCase$(Me.txt_nome.Text)
intPos = Len(strProcura)
j = 0
h = Lista0.ListCount
If intPos Then
For i = 0 To Lista0.ListCount - 1
strList = Me.Lista0.Column(0, i)
If UCase$(Left(strList, intPos)) = strProcura Then
Me.Lista0.Selected(i) = True
Selecionado = True
Me.Lista0 = Me.Lista0.Column(0, i)
Exit For
Else
Me.Lista0.RemoveItem Index:=i
Me.Lista0.Selected(i) = False
Selecionado = False
j = j + 1
If j >= h Then Exit Sub
i = i - 1
End If
Next
End If
End Sub