반응형
!**************************************
! Name: Delete Windows Recent Documents
! Description:How to delete the Window's
! recent documents folder. By Clayton Turn
! er.
! By:
!
!This code is copyrighted and has
! limited warranties.Please see http://w
! ww.Planet-Source-Code.com/vb/scripts/Sho
! wCode.asp?txtCodeId=32&lngWId=7
!for details.
!**************************************
uses ShlOBJ;
procedure TForm1.Button1Click(Sender: TObject);
begin
SHAddToRecentDocs(SHARD_PATH, nil);
end;
반응형