1
I want to make a HyperLink for each result that will appear within the ListBox.
    private void listBox_SelectionMode(object sender, EventArgs e)
    {
        LogisticaServiceContractClient Logistica = new LogisticaServiceContractClient();
        var Autos = Logistica.RetornoRomaneioPostagemPorImagem(2, retornoList.ToArray());
        if (Autos != null)
        {
            Autos.ToList().ForEach(delegate(RetornoRomaneioPostagemDataContract naoRetornado)
            {
                clog.ArquivoLog("Autos nao retornados:", String.Format("Numero auto: {0}, Tipo notificacao: {1}", naoRetornado.Numero_Auto, naoRetornado.Tipo_Notificacao), "arq.txt");
                Autos_Invalidos.Items.Add(naoRetornado.Numero_Auto);
            });
            MessageBox.Show("Nao foi possivel efetiar o retorno");
        }
        else
        {
            MessageBox.Show("Autos retornados");
        }
    }