Forum: Pascal and Delphi Mar 22nd, 2006 |
| Replies: 2 Views: 2,723 Hi, I dont see the problem here.
I would suggest check the followin:
Is max set to the size of sales ?
Does sales contain more the 1 entry ?
What does the readkey procedure do ?
(I code in Dephi... |
Forum: Pascal and Delphi Mar 22nd, 2006 |
| Replies: 13 Views: 5,374 As mentioned in prev post you need to call the InitiateSystemShutdown funtion.
Its a windows function, its declared in the Windows unit.
Before you can call it succesfully though you need to get... |
Forum: Pascal and Delphi Mar 22nd, 2006 |
| Replies: 2 Views: 12,541 I havent tried, but looking at the code im guessing:
Drop a listbox on the form. Then:
procedure TForm1.Button1Click(Sender: TObject);
begin
RunningProcessesList(ListBox1.Items, True);
end; |