private void Quitar_Foto() { TRAtaMeWS.TRAtaMeWS TRAtaMe = new TRAtaMeWS.TRAtaMeWS(); string tipo = "F"; int veo_oigo = 0; if (tipo == "A") { veo_oigo = datos_informacion.oigo; } else { veo_oigo = datos_informacion.veo; } string mensaje = ""; if (TRAtaMe.elimina_fichero(tipo, ref datos_informacion, ref mensaje)) { ShowAlert("MULTIMEDIA", "Se ha eliminado el archivo correctamente.", "S"); } else { object CrLf = System.Environment.NewLine; ShowAlert("ERROR", "No se ha eliminado el archivo" + CrLf + mensaje, "S"); } }