OK, i'm just starting out in QB and i'm trying to have a user input a drive letter of a USB pen drive and then format it using FAT or FAT32. This is how i am going about it:
when i use that nothing happens at all. what am i doing wrong? or is there a better way to do this
Code:
Dim driveletter as string
input driveletter
shell "format " + driveletter + ": /FS:FAT32"
when i use that nothing happens at all. what am i doing wrong? or is there a better way to do this