Olá caros amigos,
Estou com dificuldades na hora de dividir um código tem 2 rotinas para burlar o problema de Método ou procedimento muito grande, mas não estou conseguindo fazer isso.
Vou dividir o código em duas partes para não exceder o limite de caracteres do post.
Parte1:
'Inicio da ProcuraPersonalizada'
Private Sub ProcuraPersonalizada(ByVal TermoPesquisado As String, ByVal sPesquisarNoCampo As String)
Dim Busca As Range
Dim Primeira_Ocorrencia As String
Dim ResultadosLinha As String
Dim ResultadosPlanilha As String
Dim sSearchInCol As String
Dim arrPesquisarNasPlanilhas As Variant
Dim i As Integer
'Define a Coluna onde a informação será pesquisada
sSearchInCol = ConfigColunas(sPesquisarNoCampo)
'Define as Planilhas onde a informação será pesquisada
arrPesquisarNasPlanilhas = ConfigPlanilhasBase
'Inicializa os resultados
ResultadosLinha = ""
ResultadosPlanilha = ""
MatrizResultadosLinha = ""
MatrizResultadosPlanilha = ""
'Executa a busca
For i = 0 To UBound(arrPesquisarNasPlanilhas)
With Sheets(arrPesquisarNasPlanilhas(i))
If sSearchInCol = "" Then
Set Busca = .Cells.Find(What:=TermoPesquisado, After:=.Range("A1"), LookIn:=xlFormulas, _
LOOKAT:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False)
Else
Set Busca = .Range(sSearchInCol & ":" & sSearchInCol).Find( _
What:=TermoPesquisado, _
After:=.Range(sSearchInCol & "1"), _
LookIn:=xlFormulas, LOOKAT:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False)
End If
'Caso tenha encontrado alguma ocorrência...
If Not Busca Is Nothing Then
Primeira_Ocorrencia = Busca.Address
ResultadosLinha = ResultadosLinha & IIf((Len(ResultadosLinha) > 0), ";", "") & Busca.Row 'Lista o primeiro resultado na variavel - linha da ocorrência
ResultadosPlanilha = ResultadosPlanilha & IIf((Len(ResultadosPlanilha) > 0), ";", "") & .Index 'Lista o primeiro resultado na variavel - planilha da ocorrência
'Neste loop, pesquisa todas as próximas ocorrências para
'o termo pesquisado
Do
If sSearchInCol = "" Then
Set Busca = .Cells.FindNext(After:=Busca)
Else
Set Busca = .Range(sSearchInCol & ":" & sSearchInCol).FindNext(After:=Busca)
End If
'Condicional para não listar o primeiro resultado
'pois já foi listado acima
If Not Busca.Address Like Primeira_Ocorrencia Then
ResultadosLinha = ResultadosLinha & ";" & Busca.Row
ResultadosPlanilha = ResultadosPlanilha & ";" & .Index
End If
Loop Until Busca.Address Like Primeira_Ocorrencia
End If
End With
Next i
If Len(ResultadosLinha) > 0 Then 'Se foram encontrados resultados
MatrizResultadosLinha = Split(ResultadosLinha, ";")
MatrizResultadosPlanilha = Split(ResultadosPlanilha, ";")
'Atualiza dados iniciais no formulário
SpinButton1.Max = UBound(MatrizResultadosLinha) 'Valor maximo do seletor de registros
'habilita o seletor de registro
SpinButton1.Enabled = True
'indicador do seletor de registros
Label_Registros_Contador.Caption = "1 de " & UBound(MatrizResultadosLinha) + 1
'Box com o conteudo encontrado
With Sheets(CInt(MatrizResultadosPlanilha(0)))
txt_Orgao.Value = .Cells(MatrizResultadosLinha(0), 1).Value
If Len(.Cells(MatrizResultadosLinha(0), 2).Value) = 17 Then
OptionButton_PPP_Sim.Value = True
OptionButton_PPP_Nao.Value = False
txt_E04.Value = Left(.Cells(MatrizResultadosLinha(0), 2).Value, 2)
txt_SS1.Value = Mid(.Cells(MatrizResultadosLinha(0), 2).Value, 3, 2)
txt_NNN1.Value = Mid(.Cells(MatrizResultadosLinha(0), 2).Value, 6, 7)
txt_AAAA1.Value = Right(.Cells(MatrizResultadosLinha(0), 2).Value, 4)
Else
OptionButton_PPP_Nao.Value = True
OptionButton_PPP_Sim.Value = False
txt_EXX.Value = Left(.Cells(MatrizResultadosLinha(0), 2).Value, 2)
txt_SS2.Value = Mid(.Cells(MatrizResultadosLinha(0), 2).Value, 3, 2)
txt_PPP.Value = Mid(.Cells(MatrizResultadosLinha(0), 2).Value, 6, 3)
txt_NNN2.Value = Mid(.Cells(MatrizResultadosLinha(0), 2).Value, 10, 7)
txt_AAAA2.Value = Right(.Cells(MatrizResultadosLinha(0), 2).Value, 4)
End If
txt_AssuntoUPO.Value = .Cells(MatrizResultadosLinha(0), 3).Value
txt_Cod_AssuntoUPO.Value = .Cells(MatrizResultadosLinha(0), 4).Value
If .Cells(MatrizResultadosLinha(0), 5).Value <> Empty Then
txt_Caminho01.Value = .Cells(MatrizResultadosLinha(0), 5).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 5), "")
txt_nome1.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho01.Value = ""
txt_nome1.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 6).Value <> Empty Then
txt_Caminho02.Value = .Cells(MatrizResultadosLinha(0), 6).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 6), "")
txt_nome2.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho02.Value = ""
txt_nome2.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 7).Value <> Empty Then
txt_Caminho03.Value = .Cells(MatrizResultadosLinha(0), 7).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 7), "")
txt_nome3.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho03.Value = ""
txt_nome3.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 8).Value <> Empty Then
txt_Caminho04.Value = .Cells(MatrizResultadosLinha(0), 8).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 8), "")
txt_nome4.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho04.Value = ""
txt_nome4.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 9).Value <> Empty Then
txt_Caminho05.Value = .Cells(MatrizResultadosLinha(0), 9).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 9), "")
txt_nome5.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho05.Value = ""
txt_nome5.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 10).Value <> Empty Then
txt_Caminho06.Value = .Cells(MatrizResultadosLinha(0), 10).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 10), "")
txt_nome6.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho06.Value = ""
txt_nome6.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 11).Value <> Empty Then
txt_Caminho07.Value = .Cells(MatrizResultadosLinha(0), 11).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 11), "")
txt_nome7.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho07.Value = ""
txt_nome7.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 12).Value <> Empty Then
txt_Caminho08.Value = .Cells(MatrizResultadosLinha(0), 12).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 12), "")
txt_nome8.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho08.Value = ""
txt_nome8.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 13).Value <> Empty Then
txt_Caminho09.Value = .Cells(MatrizResultadosLinha(0), 13).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 13), "")
txt_nome9.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho09.Value = ""
txt_nome9.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 14).Value <> Empty Then
txt_Caminho10.Value = .Cells(MatrizResultadosLinha(0), 14).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 14), "")
txt_nome10.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho10.Value = ""
txt_nome10.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 15).Value <> Empty Then
txt_Caminho11.Value = .Cells(MatrizResultadosLinha(0), 15).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 15), "")
txt_nome11.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho11.Value = ""
txt_nome11.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 16).Value <> Empty Then
txt_Caminho12.Value = .Cells(MatrizResultadosLinha(0), 16).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 16), "")
txt_nome12.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho12.Value = ""
txt_nome12.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 17).Value <> Empty Then
txt_Caminho13.Value = .Cells(MatrizResultadosLinha(0), 17).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 17), "")
txt_nome13.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho13.Value = ""
txt_nome13.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 18).Value <> Empty Then
txt_Caminho14.Value = .Cells(MatrizResultadosLinha(0), 18).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 18), "")
txt_nome14.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho14.Value = ""
txt_nome14.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 19).Value <> Empty Then
txt_Caminho15.Value = .Cells(MatrizResultadosLinha(0), 19).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 19), "")
txt_nome15.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho15.Value = ""
txt_nome15.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 20).Value <> Empty Then
txt_Caminho16.Value = .Cells(MatrizResultadosLinha(0), 20).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 20), "")
txt_nome16.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho16.Value = ""
txt_nome16.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 21).Value <> Empty Then
txt_Caminho17.Value = .Cells(MatrizResultadosLinha(0), 21).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 21), "")
txt_nome17.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho17.Value = ""
txt_nome17.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 22).Value <> Empty Then
txt_Caminho18.Value = .Cells(MatrizResultadosLinha(0), 22).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 22), "")
txt_nome18.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho18.Value = ""
txt_nome18.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 23).Value <> Empty Then
txt_Caminho19.Value = .Cells(MatrizResultadosLinha(0), 23).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 23), "")
txt_nome19.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho19.Value = ""
txt_nome19.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 24).Value <> Empty Then
txt_Caminho20.Value = .Cells(MatrizResultadosLinha(0), 24).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 24), "")
txt_nome20.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho20.Value = ""
txt_nome20.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 25).Value <> Empty Then
txt_Caminho21.Value = .Cells(MatrizResultadosLinha(0), 25).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 25), "")
txt_nome21.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho21.Value = ""
txt_nome21.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 26).Value <> Empty Then
txt_Caminho22.Value = .Cells(MatrizResultadosLinha(0), 26).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 26), "")
txt_nome22.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho22.Value = ""
txt_nome22.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 27).Value <> Empty Then
txt_Caminho23.Value = .Cells(MatrizResultadosLinha(0), 27).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 27), "")
txt_nome23.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho23.Value = ""
txt_nome23.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 28).Value <> Empty Then
txt_Caminho24.Value = .Cells(MatrizResultadosLinha(0), 28).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 28), "")
txt_nome24.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho24.Value = ""
txt_nome24.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 29).Value <> Empty Then
txt_Caminho25.Value = .Cells(MatrizResultadosLinha(0), 29).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 29), "")
txt_nome25.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho25.Value = ""
txt_nome25.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 30).Value <> Empty Then
txt_Caminho26.Value = .Cells(MatrizResultadosLinha(0), 30).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 30), "")
txt_nome26.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho26.Value = ""
txt_nome26.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 31).Value <> Empty Then
txt_Caminho27.Value = .Cells(MatrizResultadosLinha(0), 31).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 31), "")
txt_nome27.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho27.Value = ""
txt_nome27.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 32).Value <> Empty Then
txt_Caminho28.Value = .Cells(MatrizResultadosLinha(0), 32).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 32), "")
txt_nome28.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho28.Value = ""
txt_nome28.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 33).Value <> Empty Then
txt_Caminho29.Value = .Cells(MatrizResultadosLinha(0), 33).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 33), "")
txt_nome29.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho29.Value = ""
txt_nome29.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 34).Value <> Empty Then
txt_Caminho30.Value = .Cells(MatrizResultadosLinha(0), 34).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 34), "")
txt_nome30.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho30.Value = ""
txt_nome30.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 35).Value <> Empty Then
txt_Caminho31.Value = .Cells(MatrizResultadosLinha(0), 35).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 35), "")
txt_nome31.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho31.Value = ""
txt_nome31.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 36).Value <> Empty Then
txt_Caminho32.Value = .Cells(MatrizResultadosLinha(0), 36).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 36), "")
txt_nome32.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho32.Value = ""
txt_nome32.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 37).Value <> Empty Then
txt_Caminho33.Value = .Cells(MatrizResultadosLinha(0), 37).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 37), "")
txt_nome33.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho33.Value = ""
txt_nome33.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 38).Value <> Empty Then
txt_Caminho34.Value = .Cells(MatrizResultadosLinha(0), 38).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 38), "")
txt_nome34.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho34.Value = ""
txt_nome34.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 39).Value <> Empty Then
txt_Caminho35.Value = .Cells(MatrizResultadosLinha(0), 39).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 39), "")
txt_nome35.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho35.Value = ""
txt_nome35.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 40).Value <> Empty Then
txt_Caminho36.Value = .Cells(MatrizResultadosLinha(0), 40).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 40), "")
txt_nome36.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho36.Value = ""
txt_nome36.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 41).Value <> Empty Then
txt_Caminho37.Value = .Cells(MatrizResultadosLinha(0), 41).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 41), "")
txt_nome37.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho37.Value = ""
txt_nome37.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 42).Value <> Empty Then
txt_Caminho38.Value = .Cells(MatrizResultadosLinha(0), 42).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 42), "")
txt_nome38.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho38.Value = ""
txt_nome38.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 43).Value <> Empty Then
txt_Caminho39.Value = .Cells(MatrizResultadosLinha(0), 43).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 43), "")
txt_nome39.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho39.Value = ""
txt_nome39.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 44).Value <> Empty Then
txt_Caminho40.Value = .Cells(MatrizResultadosLinha(0), 44).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 44), "")
txt_nome40.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho40.Value = ""
txt_nome40.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 45).Value <> Empty Then
txt_Caminho41.Value = .Cells(MatrizResultadosLinha(0), 45).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 45), "")
txt_nome41.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho41.Value = ""
txt_nome41.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 46).Value <> Empty Then
txt_Caminho42.Value = .Cells(MatrizResultadosLinha(0), 46).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 46), "")
txt_nome42.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho42.Value = ""
txt_nome42.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 47).Value <> Empty Then
txt_Caminho43.Value = .Cells(MatrizResultadosLinha(0), 47).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 47), "")
txt_nome43.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho43.Value = ""
txt_nome43.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 48).Value <> Empty Then
txt_Caminho44.Value = .Cells(MatrizResultadosLinha(0), 48).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 48), "")
txt_nome44.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho44.Value = ""
txt_nome44.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 49).Value <> Empty Then
txt_Caminho45.Value = .Cells(MatrizResultadosLinha(0), 49).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 49), "")
txt_nome45.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho45.Value = ""
txt_nome45.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 50).Value <> Empty Then
txt_Caminho46.Value = .Cells(MatrizResultadosLinha(0), 50).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 50), "")
txt_nome46.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho46.Value = ""
txt_nome46.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 51).Value <> Empty Then
txt_Caminho47.Value = .Cells(MatrizResultadosLinha(0), 51).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 51), "")
txt_nome47.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho47.Value = ""
txt_nome47.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 52).Value <> Empty Then
txt_Caminho48.Value = .Cells(MatrizResultadosLinha(0), 52).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 52), "")
txt_nome48.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho48.Value = ""
txt_nome48.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 53).Value <> Empty Then
txt_Caminho49.Value = .Cells(MatrizResultadosLinha(0), 53).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 53), "")
txt_nome49.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho49.Value = ""
txt_nome49.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 54).Value <> Empty Then
txt_Caminho50.Value = .Cells(MatrizResultadosLinha(0), 54).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 54), "")
txt_nome50.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho50.Value = ""
txt_nome50.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 55).Value <> Empty Then
txt_Caminho51.Value = .Cells(MatrizResultadosLinha(0), 55).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 55), "")
txt_nome51.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho51.Value = ""
txt_nome51.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 56).Value <> Empty Then
txt_Caminho52.Value = .Cells(MatrizResultadosLinha(0), 56).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 56), "")
txt_nome52.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho52.Value = ""
txt_nome52.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 57).Value <> Empty Then
txt_Caminho53.Value = .Cells(MatrizResultadosLinha(0), 57).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 57), "")
txt_nome53.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho53.Value = ""
txt_nome53.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 58).Value <> Empty Then
txt_Caminho54.Value = .Cells(MatrizResultadosLinha(0), 58).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 58), "")
txt_nome54.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho54.Value = ""
txt_nome54.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 59).Value <> Empty Then
txt_Caminho55.Value = .Cells(MatrizResultadosLinha(0), 59).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 59), "")
txt_nome55.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho55.Value = ""
txt_nome55.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 60).Value <> Empty Then
txt_Caminho56.Value = .Cells(MatrizResultadosLinha(0), 60).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 60), "")
txt_nome56.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho56.Value = ""
txt_nome56.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 61).Value <> Empty Then
txt_Caminho57.Value = .Cells(MatrizResultadosLinha(0), 61).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 61), "")
txt_nome57.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho57.Value = ""
txt_nome57.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 62).Value <> Empty Then
txt_Caminho58.Value = .Cells(MatrizResultadosLinha(0), 62).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 62), "")
txt_nome58.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho58.Value = ""
txt_nome58.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 63).Value <> Empty Then
txt_Caminho59.Value = .Cells(MatrizResultadosLinha(0), 63).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 63), "")
txt_nome59.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho59.Value = ""
txt_nome59.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 64).Value <> Empty Then
txt_Caminho60.Value = .Cells(MatrizResultadosLinha(0), 64).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 64), "")
txt_nome60.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho60.Value = ""
txt_nome60.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 65).Value <> Empty Then
txt_Caminho61.Value = .Cells(MatrizResultadosLinha(0), 65).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 65), "")
txt_nome61.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho61.Value = ""
txt_nome61.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 66).Value <> Empty Then
txt_Caminho62.Value = .Cells(MatrizResultadosLinha(0), 66).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 66), "")
txt_nome62.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho62.Value = ""
txt_nome62.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 67).Value <> Empty Then
txt_Caminho63.Value = .Cells(MatrizResultadosLinha(0), 67).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 67), "")
txt_nome63.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho63.Value = ""
txt_nome63.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 68).Value <> Empty Then
txt_Caminho64.Value = .Cells(MatrizResultadosLinha(0), 68).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 68), "")
txt_nome64.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho64.Value = ""
txt_nome64.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 69).Value <> Empty Then
txt_Caminho65.Value = .Cells(MatrizResultadosLinha(0), 69).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 69), "")
txt_nome65.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho65.Value = ""
txt_nome65.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 70).Value <> Empty Then
txt_Caminho66.Value = .Cells(MatrizResultadosLinha(0), 70).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 70), "")
txt_nome66.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho66.Value = ""
txt_nome66.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 71).Value <> Empty Then
txt_Caminho67.Value = .Cells(MatrizResultadosLinha(0), 71).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 71), "")
txt_nome67.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho67.Value = ""
txt_nome67.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 72).Value <> Empty Then
txt_Caminho68.Value = .Cells(MatrizResultadosLinha(0), 72).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 72), "")
txt_nome68.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho68.Value = ""
txt_nome68.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 73).Value <> Empty Then
txt_Caminho69.Value = .Cells(MatrizResultadosLinha(0), 73).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 73), "")
txt_nome69.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho69.Value = ""
txt_nome69.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 74).Value <> Empty Then
txt_Caminho70.Value = .Cells(MatrizResultadosLinha(0), 74).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 74), "")
txt_nome70.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho70.Value = ""
txt_nome70.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 75).Value <> Empty Then
txt_Caminho71.Value = .Cells(MatrizResultadosLinha(0), 75).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 75), "")
txt_nome71.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho71.Value = ""
txt_nome71.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 76).Value <> Empty Then
txt_Caminho72.Value = .Cells(MatrizResultadosLinha(0), 76).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 76), "")
txt_nome72.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho72.Value = ""
txt_nome72.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 77).Value <> Empty Then
txt_Caminho73.Value = .Cells(MatrizResultadosLinha(0), 77).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 77), "")
txt_nome73.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho73.Value = ""
txt_nome73.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 78).Value <> Empty Then
txt_Caminho74.Value = .Cells(MatrizResultadosLinha(0), 78).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 78), "")
txt_nome74.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho74.Value = ""
txt_nome74.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 79).Value <> Empty Then
txt_Caminho75.Value = .Cells(MatrizResultadosLinha(0), 79).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 79), "")
txt_nome75.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho75.Value = ""
txt_nome75.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 80).Value <> Empty Then
txt_Caminho76.Value = .Cells(MatrizResultadosLinha(0), 80).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 80), "")
txt_nome76.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho76.Value = ""
txt_nome76.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 81).Value <> Empty Then
txt_Caminho77.Value = .Cells(MatrizResultadosLinha(0), 81).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 81), "")
txt_nome77.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho77.Value = ""
txt_nome77.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 82).Value <> Empty Then
txt_Caminho78.Value = .Cells(MatrizResultadosLinha(0), 82).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 82), "")
txt_nome78.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho78.Value = ""
txt_nome78.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 83).Value <> Empty Then
txt_Caminho79.Value = .Cells(MatrizResultadosLinha(0), 83).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 83), "")
txt_nome79.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho79.Value = ""
txt_nome79.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 84).Value <> Empty Then
txt_Caminho80.Value = .Cells(MatrizResultadosLinha(0), 84).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 84), "")
txt_nome80.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho80.Value = ""
txt_nome80.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 85).Value <> Empty Then
txt_Caminho81.Value = .Cells(MatrizResultadosLinha(0), 85).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 85), "")
txt_nome81.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho81.Value = ""
txt_nome81.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 86).Value <> Empty Then
txt_Caminho82.Value = .Cells(MatrizResultadosLinha(0), 86).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 86), "")
txt_nome82.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho82.Value = ""
txt_nome82.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 87).Value <> Empty Then
txt_Caminho83.Value = .Cells(MatrizResultadosLinha(0), 87).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 87), "")
txt_nome83.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho83.Value = ""
txt_nome83.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 88).Value <> Empty Then
txt_Caminho84.Value = .Cells(MatrizResultadosLinha(0), 88).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 88), "")
txt_nome84.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho84.Value = ""
txt_nome84.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 89).Value <> Empty Then
txt_Caminho85.Value = .Cells(MatrizResultadosLinha(0), 89).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 89), "")
txt_nome85.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho85.Value = ""
txt_nome85.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 90).Value <> Empty Then
txt_Caminho86.Value = .Cells(MatrizResultadosLinha(0), 90).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 90), "")
txt_nome86.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho86.Value = ""
txt_nome86.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 91).Value <> Empty Then
txt_Caminho87.Value = .Cells(MatrizResultadosLinha(0), 91).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 91), "")
txt_nome87.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho87.Value = ""
txt_nome87.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 92).Value <> Empty Then
txt_Caminho88.Value = .Cells(MatrizResultadosLinha(0), 92).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 92), "")
txt_nome88.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho88.Value = ""
txt_nome88.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 93).Value <> Empty Then
txt_Caminho89.Value = .Cells(MatrizResultadosLinha(0), 93).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 93), "")
txt_nome89.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho89.Value = ""
txt_nome89.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 94).Value <> Empty Then
txt_Caminho90.Value = .Cells(MatrizResultadosLinha(0), 94).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 94), "")
txt_nome90.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho90.Value = ""
txt_nome90.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 95).Value <> Empty Then
txt_Caminho91.Value = .Cells(MatrizResultadosLinha(0), 95).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 95), "")
txt_nome91.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho91.Value = ""
txt_nome91.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 96).Value <> Empty Then
txt_Caminho92.Value = .Cells(MatrizResultadosLinha(0), 96).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 96), "")
txt_nome92.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho92.Value = ""
txt_nome92.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 97).Value <> Empty Then
txt_Caminho93.Value = .Cells(MatrizResultadosLinha(0), 97).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 97), "")
txt_nome93.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho93.Value = ""
txt_nome93.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 98).Value <> Empty Then
txt_Caminho94.Value = .Cells(MatrizResultadosLinha(0), 98).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 98), "")
txt_nome94.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho94.Value = ""
txt_nome94.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 99).Value <> Empty Then
txt_Caminho95.Value = .Cells(MatrizResultadosLinha(0), 99).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 99), "")
txt_nome95.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho95.Value = ""
txt_nome95.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 100).Value <> Empty Then
txt_Caminho96.Value = .Cells(MatrizResultadosLinha(0), 100).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 100), "")
txt_nome96.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho96.Value = ""
txt_nome96.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 101).Value <> Empty Then
txt_Caminho97.Value = .Cells(MatrizResultadosLinha(0), 101).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 101), "")
txt_nome97.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho97.Value = ""
txt_nome97.Value = ""
End If
If .Cells(MatrizResultadosLinha(0), 102).Value <> Empty Then
txt_Caminho98.Value = .Cells(MatrizResultadosLinha(0), 102).Value
Arquivo = Split(.Cells(MatrizResultadosLinha(0), 102), "")
txt_nome98.Text = Left(Arquivo(UBound(Arquivo)), Len(Arquivo(UBound(Arquivo))) - 4)
Else
txt_Caminho98.Value = ""
txt_nome98.Value = ""
End If
DGAF / DVGD - Divisão de Gestão de Documentos
Rafael A. Guimarães
[email protected]