1
I created a VBA that shows a vendor list and can’t get the selected item after F4.
Public Sub ListaFornecedores()
Dim strSql As StdBEStringBuilder
Set strSql = New StdBEStringBuilder
strSql.Append ("SELECT Fornecedor, Nome FROM Fornecedores")
PSO.Listas.GetF4SQL "Fornecedores", strSql.Value, "Fornecedor, Nome"
End Sub
Does anyone know how we return the selected Item?
It worked! Thank you
– acamiloMoz