je rammene encore une de ces questions ..... en fait je voudrais savoir comment enlever l'onglet sécurité d'un seul document(fichier ou dossier) sans que cela n'affecte les autres documents du système.

Merci de supporter mes .....
Code : Tout sélectionner
; Source generiert durch DLL2PBLib
; Copyright 2005 by Thomas Schulz (TS-Soft)
; Globale Variablen deklaration
Global PathRemoveFileSpecA.l
Global PathRemoveFileSpecW.l
; Init-Funktion
ProcedureDLL shlwapi_Init()
Shared DLL.l
DLL = LoadLibrary_("shlwapi.dll")
If DLL
PathRemoveFileSpecA = GetProcAddress_(DLL, "PathRemoveFileSpecA")
EndIf
EndProcedure
; End-Funktion
ProcedureDLL.l PathRemoveFileSpecA(a.l)
ProcedureReturn CallFunctionFast(PathRemoveFileSpecA,a)
EndProcedure
ProcedureDLL.l PathRemoveFileSpecW(a.l)
ProcedureReturn CallFunctionFast(PathRemoveFileSpecW,a)
EndProcedure
NAME
PathRemoveFileSpecA (SHLWAPI.@)
SYNOPSIS
BOOL PathRemoveFileSpecA
(
LPSTR lpszPath
)
DESCRIPTION
Remove the file specification from a path.
PARAMS
lpszPath [In/Out] Path to remove the file spec from.
RETURNS
TRUE If the path was valid and modified FALSE Otherwise
IMPLEMENTATION
Defined in "shlwapi.h".