Permet d’enlever la protection sur un document.
Syntaxe
CHGVAR |
VAR(&CMD) VALUE('WDPROTECT') |
CHGVAR |
VAR(&PARM1) VALUE('MotDePasse') |
CHGVAR |
VAR(&PARM2) VALUE(' ') |
CALL |
PGM(LNCCMD) PARM(&HANDLE &CMD &OPT &PARM1 + &PARM2 &RESULT) |
Paramètres
Paramètres |
|
Parm1 |
Le mot de passe spécifié à l’appel de la commande WPROTECT. |
Parm2 |
|
Exemple
Supposons qu’un document Word ait été protégé par WPROTECT, de cette façon :
LNCCMD CMD(WORDOPEN)
LNCCMD CMD(WOPENFILE) PARM1('c:\A\resProtect.docx')
LNCCMD CMD(WPROTECT) +
PARM1('Level=wdAllowOnlyComments;PWD="Aura"')
LNCCMD CMD(WSAVE)
LNCCMD CMD(WORDCLOSE) PARM1('SAVE=FALSE')
Pour enlever la protection, il faudra utiliser la commande suivante :
LNCCMD CMD(WDPROTECT) PARM1('Aura')
Voir aussi
• WPROTECT