Boa Tarde
Amigos tenho um codigo que esta rodando 4 vezes num loop e preciso que rode 2 vezes, alguem pode me ajudar ? Segue o trechoi do codigo abaixo
For i = 1 To Grid.Rows - 1
For ii = 0 To lstFornecedor.ListCount - 1
If lstFornecedor.Selected(ii) = True Then
vet(ii) = lstFornecedor.ItemData(lstFornecedor.ListIndex)
lstFornecedor.ListIndex = ii
IncluirCotacao = "INSERT INTO COTACAO(NCOD,VALUNICOMP,IPI,OBS,PRAZOENT,FORMAPG,PRAZCOT,CODPROD,CODFOR,CODSET,CODGRUPO,SOLICITANTE) " _
& "VALUES(" & NCOD & ",'" & Grid.TextMatrix(i, 1) & "','" & Grid.TextMatrix(i, 2) & "','" & txtOBS & "','" & Grid.TextMatrix(i, 3) & "', " _
& "'" & Grid.TextMatrix(i, 4) & "','" & Grid.TextMatrix(i, 5) & "'," & lstProduto.ItemData(lstProduto.ListIndex) & ", " _
& "" & vet(ii) & "," & cboSetor.ItemData(cboSetor.ListIndex) & "," & cboGrupo.ItemData(cboGrupo.ListIndex) & ",'" & Trim(lblSOLICITANTE.Caption) & "')"
Banco.Execute IncluirCotacao
End If
Next
Next
MsgBox "Cotação efetuada com sucesso"