CLIPBOARD.GETTEXT
Pessoal Estou com problemas com o Clipboard(Area de tranferencia).
Quando esta dentro de um Thread não funciona. da um error, mesmo se a thread estiver pausada.
Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttribute marked on it.
Fiz um teste a parte, inicio a thread ee mando
Clipboard.settext([Ô]Copiar teste[Ô])
dim Testo as string = Clipboard.gettext()
Mesmo assim da o erro,
Se alguem souber como resolver da uma Força
Quando esta dentro de um Thread não funciona. da um error, mesmo se a thread estiver pausada.
Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttribute marked on it.
Fiz um teste a parte, inicio a thread ee mando
Clipboard.settext([Ô]Copiar teste[Ô])
dim Testo as string = Clipboard.gettext()
Mesmo assim da o erro,
Se alguem souber como resolver da uma Força
Você só precisa fazer o que o erro diz, mudar o Apartmen para STA
Dim t As New Thread(AddressOf MinhaThread)
t.SetApartmentState(ApartmentState.STA)
t.Start()
Tópico encerrado , respostas não são mais permitidas