Search Results

2
votes

How can I change a main menu First level caption?

Perhaps I'm missing something, but it seems to be very simple: MainMenu1.Items[0].Caption := '&Hello'; // first top-level item MainMenu1.Items[1].Caption := '&World'; // sec …
7
votes

Website talking to client application?

See Registering an Application to a URL Protocol. …
7
votes

Enumerate running processes in Delphi

One way is using the Tool Help library (see TlHelp32 unit), or …
1
vote

How to get performance data from a remote computer using Delphi

Have a look at this answer. You could rewrite the GetPerformanceData …