m.Map.Map_Move(Direction:=DirectCast(sender, Control).Tag) m.Map.Map_Move(Direction:=DirectCast(sender, Label).Tag)
Dim lbl As Label = TryCast(sender, Label) If lbl IsNot Nothing Then Dim direction As Map.Dir = CType(lbl.Tag, Map.Dir) m.Map.Map_Move(Direction:=direction) End If