Originally posted by choas
Hi,

Someone can explain me this pls :

artist = MP3Info.sArtist
title = MP3Info.sTitle
space = " - "

msgbox(artist + space + title) 'it doesn"t work it only show artist

msgbox(title + space + artist) 'it work fine


oO

thanks you
As a matter of practice, it is best not to use variable names which might conflict with reserved names in VB.NET or databases etc. Use strSpace and strTitle.