Search results for query: *

  1. N

    Question [RESOLVED] String Issues with FileGet

    Terminating character Although this issue was forever ago... I think the issue was that I was getting a terminating character in my string. This caused output not to returning anything past the terminating character. I wish I could give you the ascii number or hex string, but I don't...
  2. N

    Question [RESOLVED] String Issues with FileGet

    Nevermind. Problem solved.
  3. N

    Question [RESOLVED] String Issues with FileGet

    Testing Sample Here is a quick excerpt if you'd like to play around with it... Imports System Imports System.IO Dim strTag As New String(" ", 3) Dim strTitle As New String(" ", 30) Dim strArtist As New String(" ", 30) 'change this to the path for your mp3 file Dim strFilename As String =...
  4. N

    Question [RESOLVED] String Issues with FileGet

    I have a class that pulls the ID3 information from an MP3 file. This information is at the very end of the file in plain ASCII. The original author is using FileGet to retrieve just the last 127 characters of each mp3 file. The issue is that this information is put into strings declared like...
Back
Top