Hi,
I'm trying to change the button backcolor once the Done event is completed. But it didn't work..
Public Event Done()
Private Sub checkinput()
'Port = ReceivedString.Split("&")
'For i = 0 To UBound(Port)
'Debug.Print("Port: " + Port(i))
'Next i
RaiseEvent Done()
End Sub
Private Sub changecolor() Handles Me.Done
RD6.BackColor = Color.Lime
Debug.Print("here") ' Here is actually printed
End Sub
Any hints?