--snip-- var Form1: TForm1; notifier: array[1..999] of Tshellchangenotifier; x:integer;
procedure TForm1.ShellChangeNotifierChange(sender:tobject); begin showmessage((sender as TShellChangeNotifier).root); end;
procedure TForm1.Button1Click(Sender: TObject); begin for x := 0 to memo1.Lines.Count-1 do begin notifier[x] := tshellchangenotifier.Create(self); notifier[x].Root := memo1.Lines.Strings[x]; notifier[x].NotifyFilters := [nfFileNameChange,nfDirNameChange,nfSizeChange]; notifier[x].OnChange := ShellChangeNotifierChange(notifier[x]); end; end; --snip--
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.