>I need to create a string that is enclosed between the " char. Example, > /home/user/file_name.asm > has to become > > "home/user/file_name.asm" > > How could I solve the problem? > Francesco hi, try button1.text = chr(34) & "home/user/file_name.asm" & chr(34) frank