|
ANN: EMS MySQL Manager 0.91 is available now...
EMS MySQL Manager v. 0.91 released...
Related Discussions - HIDING FILES FROM USER OUTSIDE OF MY PROGRAM. (2001-01-17 04:33:53)You won't like my answer :-) Yes, there's a way. You'll have to developp a VxD file, to hook the IFS manager. But you can't do that in Delphi (I...
- DISABLE WINDOWS SPOOL (2001-01-18 23:14:49)You don't need to turn off the spooler service to print to a specific port ...:o)
The spooler is a service and may be stopped with a service...
- HOW TO EXECUTE THE CPL FILE ??? (2001-01-19 14:53:24)Here's many of them. remember that the arguments may be different for different versions of Windows:
See my other post on how to run them......
- LOOP TO GET NEXT ACTIVE APP IN WINDOWS Z-ORDER? (2001-02-02 13:08:47)If you find SysTray or Program Manager, pass the handle of the SysTray or Program Manager to the GetWindow function
with the GW_HWNDNEXT uCMD...
- RUNNING CODE ONCE FORM IS VISIBLE (2001-02-08 22:35:31)You could also add a TTimer component to the form, that gets enabled by .Show event and fires after any preset interval. The OnTimer event could...
- LMSHARE.H WITH INCLUDE FILES ... (2001-02-07 06:30:32)www.delphi-jedi.org has the Lan Manager headers translated
on their APILibrary page.
- DATABASE (2001-02-11 10:57:10)Hi, thanks for repling again. I'll try and explain a little better.
In a DBase Database, i have some fields: 'ID', 'Filename'.
When a button is...
- HOW GET CPU- AND MEMORY USAGE OF OTHER APPS? (2001-02-13 07:58:16)you can download TSysInfo component from this site which will give you much much more than what u are looking for
- KYLIX FOR LINUX (2001-02-16 06:37:30)I would imagine so. I think the only restriction is that you will need KDE installed as your Window Manager, and also make sure that your Kernel...
- HOW TO LET MY APP 'IDLE' (2001-02-20 04:28:17)instead of sleep() u can use the following
var
tic,tic1 : variant;
begin
tic := formatdatetime('s',time);
tic1 := tic;
while (tic1-tic) <...
|