Pergunta

How would you set a custom location for an error provider in VB.Net?

I have tried:

myErrorProvider.SetIconAlignment(myTextBox, ErrorIconAlignment.MiddleRight + 50)

However this doesn't work

Foi útil?

Solução

I don't think you can do it with the alignment. Try a different method: myErrorProvider.SetIconPadding(myTextBox, 50)

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top