Search results for query: *

  1. qwazimoto

    Help with shared LAN application.

    Hi people NOTE: Some of my questions may be a bit lame but I will not have access to a Lan to debug as often as I would like. also this application needs no networking capability, unless I need it to acheive this. I am creating an application that needs to be stored and shared to specific...
  2. qwazimoto

    Help Making Media Player

    Sort Media Here is some code for adding each song to its own album (which is a song array) and adding each album to its own artist (which is an album array) and last of all adding each artist to an artist array. You could then sort any artists or albums songs by track or what ever. first I...
  3. qwazimoto

    Help Making Media Player

    Do you get ... do you understand how i have used the song structure? and how i used an array of this structure? and how its sorting by the "Track" property of each song in this song array?
  4. qwazimoto

    Help Making Media Player

    Ok Sorry for not commenting it, I was trying real hard to include comments with all of this code too.. at 3 in the morning the little things seem to slip my mind. there were a few pointless variables in there (not sure what i was thinking to be honest) but it should be easier to understand...
  5. qwazimoto

    How to skin

    How you skin a vb.net app? Other than using image property for controls and inheriting/making a control and drawing it my self im not sure of how it can be done. thanks.
  6. qwazimoto

    Help Making Media Player

    i just added it i just added it to that program above, here it is again. it needs some error catching and it only shows the first image found, but thats easy to change and title text box actually displayes the artist(for album art finding) so you might want to add a textbox for artist, but...
  7. qwazimoto

    Help Making Media Player

    Cool, want some album art auto downloader code sweet as. Im working on it now, what i have done is mainly for demo purposes. it will be fully funtional and more when finished. do you want some source code to automaticly download album art?
  8. qwazimoto

    Help Making Media Player

    Do you intend on using a library? if you do intend on using a music library. then if you take a look at the library demo above, you could add a size property to the structure and for mp3 files you can use the .size property from the mp3 tag reader, or for wma files get the file size from...
  9. qwazimoto

    Ripping & Burning Audio CD's need Help

    Does any one know of how to burn or rip audio CD's. I would prefer an api that could handle encoding the files aswell but anything or any info will do... I have looked into using Lame encoder and an imapi wrapper (image mastering api) using redbook format but I would prefer something thats a bit...
  10. qwazimoto

    Help Making Media Player

    Glad I could help man... If you could have a look at how i used a background worker and let me know of any improvements, that would be cool... thanx
  11. qwazimoto

    Help Making Media Player

    ID3 editor and numericly sort Sample app do you use an array of some sort for adding these items to list view? or a structure? or ??? Ive attached a library demo that show how to edit ID3 tags and you can sort an array by order of numbers(and show in listview) it is an array of the "song"...
  12. qwazimoto

    Help Making Media Player

    Set ID3 hey, i will upload a demo now that will allow you to set file size option before searching. and it will include a little ID3 tag editor I didnt realy get what you meant by the file size, do you want to sort them in listview once they were found? or do you want to restrict files larger...
  13. qwazimoto

    Help Making Media Player

    Track bar You can use a trackbar control, and on trackbar value changed event set the volume to the trackbars value sub whatever(byval blabla) handles trackbar1.valuechanged (i think) just dbl click it and it will give you the right sub. and then wmp.settings.volume = trackbar1.value or...
  14. qwazimoto

    Using GetPixel to find edges & points for collision

    blabla Yeah, the background thing is what i done it this way for, to reduce processing at simulation runtime. any more suggestions? not urgent as i havent made any attempt at the graphics path suggestion at this stage. thanks man...:rolleyes: do ya like my cat?
  15. qwazimoto

    Help Making Media Player

    some tips how to set or get volume wmpInfinite.settings.volume = 23 '(from 0 to 100)i use a slider thing dim i as integer = wmpInfinite.settings.volume how to get song length Dim strSongTime AsString = wmpInfinite.currentMedia.durationString Dim currentTimePos AsString =...
  16. qwazimoto

    Help Making Media Player

    Good timing I just pressed the save button on a simple library program for you as i got an email about your reply,so here it is. you can test it first by just clicking "Load Data" then click "Show listview items" (some of my media info is saved to a ser file that you can use for a quick...
  17. qwazimoto

    Help Making Media Player

    So what do you want to do First What do you want to do with this media player. eg. search for songs, make a playlist, sort by artist ect
  18. qwazimoto

    Using GetPixel to find edges & points for collision

    Ahhh. a better way to look at it OK... basicaly im trying to make a simple 2d map creator, and then create an automated game that requires no user input. each map may have multiple rooms. no doors are needed. I can have as many preset shapes and objects as needed, so perhaps no drawing is...
  19. qwazimoto

    Using GetPixel to find edges & points for collision

    Thanks thank you verry much for that info, it solved more of my problems than I even mentioned...but more q's arise... I will look into graphics path with great detail. But, this will require me to rethink my design upto this point(well actually Im not working to a design at this point, Im just...
  20. qwazimoto

    Using GetPixel to find edges & points for collision

    Hi I am creating a program where I have to simulate people moving around an entertainment complex. The user must be able to draw the complex's floor layout, then add any objects to the layout, eg tables, gardens ect. I feel competant enough to tackle these problems (except the AI for the...
Back
Top