Search found 82 matches: kill

Return to advanced search

... to this part that is already running Option a could possibly give the user the option to set the focus as per option b or maybe, if appropriate, kill off the existing copy of this part and start a new one? I'm not saying that either of these options are necessarily any better or worse. Merely ...
by xProgrammer
Sun Jun 15, 2008 10:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make it impos. in MDI, to open a appl.-part twice ?
Replies: 14
Views: 3403

> The bug that's stopping me now is about quitting windows apps which don't quit until you kill its process in the task-manager > Is that bug also present in the free xHarbour Borland version ? We haven't noticed it and haven't got any report about it (with the ...
by Patrick Mast
Tue May 06, 2008 6:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Confusion re version compatibility b/w FWH and xHarbour.com
Replies: 13
Views: 2826

Dear Patrick, > The bug that's stopping me now is about quitting windows apps which don't quit until you kill its process in the task-manager > Is that bug also present in the free xHarbour Borland version ? We haven't noticed it and haven't got any report about it (with ...
by Antonio Linares
Tue May 06, 2008 6:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Confusion re version compatibility b/w FWH and xHarbour.com
Replies: 13
Views: 2826

Re: Confusion re version compatibility b/w FWH and xHarbour.

... get a new xHarbour Builder beta out as soon as possible. The bug that's stopping me now is about quitting windows apps which don't quit until you kill its process in the task-manager. So, as you see, I'm so depended on so many freelance open source programmers. A new release "look" so easy to ...
by Patrick Mast
Tue May 06, 2008 6:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Confusion re version compatibility b/w FWH and xHarbour.com
Replies: 13
Views: 2826

Utilties similar to GetTasks

Here are some utilties to get the processes running, kill a process, get users who are running an exe, for any one who may be inerested. Limitations are that these utilties are based on WMI services and work only with xHarbour. I do not know how to ...
by nageswaragunupudi
Wed Jan 30, 2008 4:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Utilties similar to GetTasks
Replies: 4
Views: 1262

... of memory" can become fragile. Many programs do not react gracefully when malloc() returns 0. With newer Linux kernels, the kernel may decide to kill some processes to regain memory, and you may not like the kernel's choice of which to kill. Running /usr/bin/top is one way to check on the usage ...
by karinha
Fri Oct 19, 2007 11:35 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: proteger exe contra debuggers y cracks
Replies: 16
Views: 6738

there are only 4 mac viruses... and if you get infected by them is only because you want to kill your self.. is something like the "harakiri" jejejeje... i agree with you... if i'm gonna develop software i will make sure to develop to the moss computers... so.. that's ...
by VeRCE
Thu Sep 13, 2007 5:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH and xHarbour for Apple Mac
Replies: 10
Views: 3490

You guys are getting crazy for a thing that can be easly resolved !!!!! don't kill pigeons with cannon balls. Have you ever heard about TURL class? (comes along with xHarbour), it's very simple to use: oUrl := tURL():New(<here comes the call ...
by R.F.
Sat Jul 14, 2007 12:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTTP post and response
Replies: 8
Views: 4113

Enrico, not kill using oActivex:end(), help-me ! :cry: ************************** function pdfMain(Nomerel) ************************** local poWnd, oActiveX,IDPDF:="" IF ! PDFActivex(@IDPDF) RETURN(.F.) ENDIF nomerel:=if(nomerel=nil,"PDF ...
by AOKISANTOS
Mon May 14, 2007 2:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Kill process ADOBE PDF ?!
Replies: 2
Views: 842

Re: Kill process ADOBE PDF ?!

Did you already try

Code: Select all  Expand view
oActiveX:End()


?

EMG
by Enrico Maria Giordano
Mon May 14, 2007 6:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Kill process ADOBE PDF ?!
Replies: 2
Views: 842

Kill process ADOBE PDF ?!

************************** function pdfMain(Nomerel) ************************** local poWnd, oActiveX,IDPDF:="" IF ! PDFActivex(@IDPDF) RETURN(.F.) ENDIF nomerel:=if(nomerel=nil,"PDF Relatório",nomerel) DEFINE WINDOW poWnd TITLE ".::"+alltrim(sis_1nom)+"::. "+nomerel+" - "+IDPDF oActiveX = TActiveX(...
by AOKISANTOS
Mon May 14, 2007 3:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Kill process ADOBE PDF ?!
Replies: 2
Views: 842

... the SQL world with all its features. Sorry to say guys but it's true, using USE... REPLACE or stuff like that having a SQL behind, is like to kill pigeons with cannonballs. The best choice is to use ADO for accesing data, the ADO model is very similar to Xbase model, you will feel very comfotable ...
by R.F.
Mon Mar 05, 2007 5:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Client / Server
Replies: 5
Views: 2392

Kill Process at end of program ?

... when using Ftp, the program remains in memory after quitting the app , all connexions are properly closed by the app. Is there a way to "kill all process issued by the program" ? and make sure it is ended in anyway ? I often have to reset completely my Hp Ipaq to run my app again. Thanks ...
by Richard Chidiak
Sun Jan 21, 2007 5:38 pm
 
Forum: FiveWin for Pocket PC
Topic: Kill Process at end of program ?
Replies: 6
Views: 2370

... is the folder. If I add the folder, the program work fine only the first time. When I close the application, the task remains active (I must kill the process with Task Manager). // Using nested MODAL windows #include "FWCE.ch" function Main() local oWnd IF IsExeRunning( ...
by Pier Luigi
Sun Jan 07, 2007 4:44 am
 
Forum: FiveWin for Pocket PC
Topic: Windows non modal behaviour ???
Replies: 11
Views: 3248

... called in the same moment as an InetConnect). * The second version of this function accepts a pre-built socket * as a parameter. This allows to kill asyncronously a thread waiting * for InetConnect to connect, and then cleaning up the leftover * socket data. Also, it is possible to give timeout ...
by Enrico Maria Giordano
Tue Sep 26, 2006 4:44 pm
 
Forum: FiveWin for Pocket PC
Topic: Tsocket samples send and receive?
Replies: 5
Views: 2479
PreviousNext

Return to advanced search