Board index » delphi » Killing a process and saving edit text
P...@antionline.com
![]() Delphi Developer |
Thu, 09 Jan 2003 03:00:00 GMT
|
P...@antionline.com
![]() Delphi Developer |
Thu, 09 Jan 2003 03:00:00 GMT
Killing a process and saving edit text
Hi
I'm inexperienced with Delphi(2) and I have had a problem (2) with my latest project. Basically I am writing a configuration GUI for a windowless application (No forms). My first problem is killing a process. I know how to kill a window but I My second problem is saving the contents of an edit. I have been using Has anyone used the Talisman shell replacement with Delphi? TiA |
Martin Prikry
![]() Delphi Developer |
Fri, 10 Jan 2003 03:00:00 GMT
Re:Killing a process and saving edit textQuote> My second problem is saving the contents of an edit. I have been using Delphi 5 and it should work in any other version. procedure TForm1.Button1Click(Sender: TObject); procedure TForm1.Button2Click(Sender: TObject); -- |
Hannes Breue
![]() Delphi Developer |
Sat, 11 Jan 2003 03:00:00 GMT
Re:Killing a process and saving edit textHi Paul, here's how to kill a process: {-------------------------------------------------------------------------- it uses PSAPI and TLHelp32 and these functions: {-------------------------------------------------------------------------- {-------------------------------------------------------------------------- {-------------------------------------------------------------------------- HTH, > My first problem is killing a process. I know how to kill a window but I > My second problem is saving the contents of an edit. I have been using > Has anyone used the Talisman shell replacement with Delphi? > TiA |
Paul William
![]() Delphi Developer |
Sun, 12 Jan 2003 03:00:00 GMT
Re:Killing a process and saving edit textThanks for the help. In article <D8yf5.2279$T2.40...@news.tli.de>, Hannes Breuer Quote>Hi Paul, |