| Author |
Message |
Topic: kill Tasks that have no window shown |
chucks0
Replies: 3
Views: 14273
|
Forum: General Help Posted: Mon Nov 17, 2003 5:45 pm Subject: kill Tasks that have no window shown |
Two reasons:
1. Using the windows tools, if you add notepad.exe to the disallowed application list, all a user has to do is rename it to something.exe and it will work. My script traces back to t ... |
Topic: kill Tasks that have no window shown |
chucks0
Replies: 3
Views: 14273
|
Forum: General Help Posted: Mon Nov 17, 2003 3:56 pm Subject: kill Tasks that have no window shown |
Here is a script that we use that constantly monitors the computer for prohibitted applications.
#-----------------------------------------------------------------------------#
# ... |
Topic: Memory Leak |
chucks0
Replies: 4
Views: 18794
|
Forum: Bug Reports Posted: Tue Nov 11, 2003 4:26 am Subject: Memory Leak |
Here is a good script to show what is happening. Just compile it and run the resulting exe.
LIST CREATE,1
:Loop
LIST TASKLIST,1,NI
LIST CLEAR,1
WAIT .050
GOTO Loop
OR
:L ... |
Topic: Memory Leak |
chucks0
Replies: 4
Views: 18794
|
Forum: Bug Reports Posted: Tue Nov 11, 2003 4:13 am Subject: Memory Leak |
| I had seen that post and changed all of my defined functions to gosub calls but the memory leak remained. It seems to be related to creating and clearing the lists over and over. |
Topic: Memory Leak |
chucks0
Replies: 4
Views: 18794
|
Forum: Bug Reports Posted: Tue Nov 11, 2003 3:56 am Subject: Memory Leak |
Doing some testing I have narrowed down the memory leak to the following code in the GetProcs command:
LIST MODULES,9,%%ProcID
LIST PUT,5,%%ProcName|@VERINFO(@ITEM(9,0),N)| ... |
Topic: Memory Leak |
chucks0
Replies: 4
Views: 18794
|
Forum: Bug Reports Posted: Mon Nov 10, 2003 8:39 pm Subject: Memory Leak |
I am building a process monitor / killer that will monitor the system for forbidden applications and kill them if found. The code is:
OPTION ERRORTRAP,ErrorHandler
#define command,CheckFiles
# ... |
Topic: API Question |
chucks0
Replies: 4
Views: 18211
|
Forum: Advanced Help for VDS 5 & Up Posted: Tue Nov 04, 2003 2:50 am Subject: API Question |
| So I assume that I would have to write my own DLL to do this? |
Topic: API Question |
chucks0
Replies: 4
Views: 18211
|
Forum: Advanced Help for VDS 5 & Up Posted: Mon Nov 03, 2003 6:35 pm Subject: API Question |
I have a VBScript that I have been using that reads information from a Novell eDirectory Tree. It uses the Novell ActiveX controls. Example code follows:
Sub GetNDSUsers(pContext)
... |
Topic: Alternatives? |
chucks0
Replies: 22
Views: 65116
|
Forum: Miscellaneous Posted: Sat Aug 10, 2002 5:12 pm Subject: Alternatives? |
After reading this thread, I had to download and try out iBasic. There were two main things it has that I would love to see incorporated into future versions of VDS.
1. The ability to access API ... |
Topic: Change screen resolution with VDS |
chucks0
Replies: 3
Views: 13161
|
Forum: General Help Posted: Wed Jul 24, 2002 2:44 am Subject: Change screen resolution with VDS |
| I've used a program called multires for this for quite some time. It has a lot of features. http://www.entechtaiwan.com/multires |
Topic: Starting VDS Applications as Service? |
chucks0
Replies: 3
Views: 14786
|
Forum: General Help Posted: Tue Jun 25, 2002 11:55 pm Subject: Starting VDS Applications as Service? |
| I know you can do it using the servany program that comes with the resource kit. I'm not sure about doing it with just VDS. |
Topic: Disable Close (x) of an Apps Title Bar |
chucks0
Replies: 9
Views: 24206
|
Forum: General Help Posted: Fri Jun 21, 2002 1:39 am Subject: Disable Close (x) of an Apps Title Bar |
I can disable the X in Delphi with the following code:
var
hwndHandle : THANDLE;
hMenuHandle : HMENU;
begin
hwndHandle := FindWindow(nil, PChar(ParamStr(1)));
if (hwndHandle <> ... |
Topic: Disable Close (x) of an Apps Title Bar |
chucks0
Replies: 9
Views: 24206
|
Forum: General Help Posted: Thu Jun 20, 2002 11:19 pm Subject: Disable Close (x) of an Apps Title Bar |
| Actually, the application is a student management system that leaves a lot of DB4 database files open. As long as the users use File / Quit to exit, the database files are closed. I can always resor ... |
Topic: Disable Close (x) of an Apps Title Bar |
chucks0
Replies: 9
Views: 24206
|
Forum: General Help Posted: Thu Jun 20, 2002 10:12 pm Subject: Disable Close (x) of an Apps Title Bar |
| I would use the close section of the VDS app except that I am talking about disabling the close button of a Non-VDS app. I did find the appropriate @sendmsg api call that will let me change the title ... |
Topic: Disable Close (x) of an Apps Title Bar |
chucks0
Replies: 9
Views: 24206
|
Forum: General Help Posted: Thu Jun 20, 2002 2:03 am Subject: Disable Close (x) of an Apps Title Bar |
| We have an application that leaves files open when a users uses the Window Close button (the X in the title bar) to exit rather than choosing File / Exit. Does anyone know if there is a way to use @s ... |
| |