hello, i have here a 8 in 1 memory card reader...
i want to create a program that can format using my own vb program
how to create like this?
thanks..
Printable View
hello, i have here a 8 in 1 memory card reader...
i want to create a program that can format using my own vb program
how to create like this?
thanks..
The memory card reader automatically assigns drive letters (thus links it to the filesystem). You can use any normal Format application to format those 'drives'.
@Devion
got it... then how to create a function on vb? so that i can perfrom throught
vb program
thanks..
Initiating a format from within VB?
Well there are multiple options to do so:
VB Code:
Shell "Format " & strDriveLetter & ":",, vbMinimized
Or...
Use the SHFormatDrive API function. More info @ http://btmtz.mvps.org/shformat/ ..
@Devion
thanks...
:)