CodeTyphon32中自带例子源码:5行代码取得所有进程列表。

来源:互联网 发布:c语言 sleep 1 编辑:程序博客网 时间:2024/05/20 18:47


C:\codetyphon\CodeOcean\Solutions\samples\LSListProcess



procedure TMainForm.UpdateListButtonClick(Sender: TObject);var  VProcess: TStringList;begin  VProcess := TStringList.Create;  try    LSListProcess(VProcess);    ProcessListBox.Items := VProcess;  finally    VProcess.Free;  end;end; 


0 0