eriva_br 7 Denunciar post Postado Outubro 17, 2005 o problema é o seguinte, recebo um arquivo xml e estou abrindo ele com o dataset (dt.ReadXml("F:\MP3\cursos.xml")) o problema é que as vezes mandam este arquivo xml com algumas linhas em branco no inicio do arquivo, alguem sabe como resolver isso?uma idéia seria excluir essas linhas em branco, só que naum consegui excluir, só consigo identifica-las: Dim fluxoTexto As IO.StreamReader Dim excluirLinha As IO.StreamWriter Dim linhaTexto As String If IO.File.Exists(txtarquivo.Text) Then fluxoTexto = New IO.StreamReader(txtarquivo.Text) linhaTexto = fluxoTexto.ReadLine While linhaTexto <> Nothing '<-- qdo. retorna nothing é pq. tem uma linha em branco txtLinhas.Text &= linhaTexto & vbCrLf linhaTexto = fluxoTexto.ReadLine End While fluxoTexto.Close() Else MessageBox.Show("Arquivo não existe") End Ifobrigado, Compartilhar este post Link para o post Compartilhar em outros sites
eriva_br 7 Denunciar post Postado Outubro 17, 2005 case alguem precisar, achei aqui Compartilhar este post Link para o post Compartilhar em outros sites