Search results for query: *

  1. L

    Help Making Media Player

    I found an issue with how you run your progress bar. I found that the way that I use is a little more efficient. When I used your method, I was getting percentages of 102, and 101, which would cause a nasty error. So, here is what I use, and I will always get a percentage of 100 at the end of...
  2. L

    Help Making Media Player

    Wow, it's amazing what you learn when there are comments in the code. I understand perfect now. Thanks for throwing the comments in there. Now... Here is an even better question for you. Say, you have multiple albums. There will be more than one "Track 1". So, Would you make another instance of...
  3. L

    Help Making Media Player

    Yeah, my book explained well how to use a serialized database, and seeing your code into practical use made perfect sense. So I understand how to save the stuff to a .ser file, or any other kind of file format I want, but I'm looking over the sorting code right now. I have Fridays off and...
  4. L

    Help Making Media Player

    All sorts of confusion Hey Qwazimoto, could you do me a favor and explain how Private Sub btnSort_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSort.Click Dim notfinished, itemsMoved As Boolean itemsMoved = False notfinished = True Dim totalmoved As Integer...
  5. L

    Help Making Media Player

    Sure, i can always use something to improve the program.
  6. L

    Help Making Media Player

    Yeah, looking at this library, i'm getting fresh ideas. Thanks for posting that up here... it will help out immensely
  7. L

    Help Making Media Player

    Well, first I cast the files into an array when you click the node on my TreeView Dim Dir AsNew DirectoryInfo(e.Node.FullPath.ToString) Dim files() As FileInfo = Dir.GetFiles("*.mp3*", SearchOption.AllDirectories) Dim finext As FileInfo Second, I pick through all the information I need...
  8. L

    Help Making Media Player

    The problem that I am having when I sort, on the ListView is that the numbers are sorting as a string, so what I get when I click the ColumnHeader, I get this 1 120 13 131 1331 14 ... ... The numbers are not in ascending order, it's being sorted by the IComparer, i'm not sure if that's the...
  9. L

    Help Making Media Player

    Hi guys, I too am building a MP3/WMA Player and I'm not at a standstill yet, but I can't figure out how to sort the darn filesize, numerically. Other than that. The player is coming along nice, and i've downloaded your projects to get an idea of what I might be missing, or what I can improve on...
Back
Top