Re: [MBS] DREraseMBS examples?

2020-06-14 Thread Marnaud
> Le 14 juin 2020 à 14:28, Christian Schmitz a > écrit: > >> I'd like to convert the following shell command to Xojo (MBS) format: >> diskutil secureErase 0 /dev/rdisk5 > > That should work fine. Using which class? >> I'm considering trying the DREraseMBS object for this, like that: >> >>

Re: [MBS] DREraseMBS examples?

2020-06-14 Thread Christian Schmitz
> Am 14.06.2020 um 14:27 schrieb Arnaud Nicolet : > > Hello, > > I'd like to convert the following shell command to Xojo (MBS) format: > diskutil secureErase 0 /dev/rdisk5 That should work fine. > I'm considering trying the DREraseMBS object for this, like that: > > de=new

Re: [MBS] DREraseMBS examples?

2020-06-14 Thread Christian Schmitz
> Am 14.06.2020 um 14:31 schrieb Marnaud : > > >> Le 14 juin 2020 à 14:28, Christian Schmitz >> a écrit: >> >>> I'd like to convert the following shell command to Xojo (MBS) format: >>> diskutil secureErase 0 /dev/rdisk5 >> >> That should work fine. > > Using which class? Standard Xojo

[MBS] DREraseMBS examples?

2020-06-14 Thread Arnaud Nicolet
Hello, I'd like to convert the following shell command to Xojo (MBS) format: diskutil secureErase 0 /dev/rdisk5 I'm considering trying the DREraseMBS object for this, like that: de=new DREraseMBS(Device) de.eraseType=de.DREraseTypeComplete de.start (where “de” is a property) However, this