Jump to content

Recommended Posts

Posted

Olá comunidade!

Como eu faço para comparar um item selecionado em uma listboxA com o conteúdo da listboxB?

O que eu quero fazer é:

IF NOT item selecionado na listboxA = qualquer item da listboxB THEN

listboxB recebe o ítem selecionado

END IF

Posted

Algo assim?

If ListBox1.SelectedIndex >= 0 Then
If ListBox2.FindString(ListBox1.SelectedItem) < 0 Then
	ListBox2.Items.Add(ListBox1.SelectedItem)
End If
End If

Caro nelsonr, obrigado mais uma vez pela ajuda. Este código resolveu o problema.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.