Win95
Main Topics
Browse All TopicsI have written a logon program that looks up the time left in your account (via TCP/IP) and then lets you use the PC for X number of minutes.
When your time is up the logon screen comes up again and blocks you from using the PC. The logon screen is quite secure (no ctrl- alt-del etc), but once you'ce logged in, it's possible to end the timer task.
Because the timer program sends message once a minute, the server knows very quickly, but I'd like to make it more difficult to shutdown the program. I've considered using a device driver - This is how I think it should work:
the device driver is loaded on startup.
when you press a certain key combination, the driver is invoked and brings up the logon box. you log in and when you run out of time, the driver brings up the logon box again.
Questions:
Does this sound like it can be implemented in this way?
Can you have a hotkey to bring up the logon box? How would this be done?
Would the logon box be part of the driver or a dll?
Would this driver be able to communicate via tcp/ip?
Thanks
Richard
PS. This is probably worth more points, but I'm a bit low right now!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
If you are wishing to use this in a Cafe or Network environment, there is a program available called Cyber-Time that may do the trick.
It's URL is: http://www.cybertimesoftwa
Otherwise, I've written several applications that do not allow the user to close the application. All you have to do it place some code into the:
QUERYUNLOAD() event of the main form. Then you could set a conditional shutdown as you wish. You'll notice there is a "Cancel" parameter that is boolean, to allow or disallow the application to close.
If you wish, I can also post some code to hide your application from the task list. Let me know either way.
The program is an access control system similar to Cybertime, but not exactly the same. Cybertime looks good though!
Call me crazy, but do you mean the closequery event of the main form? That has the canclose parameter. This doesn't stop you doing an end task though?
The code to hide the program from the task list would be helpful, thanks.
Any idea where I can find out more about the Guardian Security system mentioned at cybertime?
Create a small program, something like this:
program Project1;
uses
whatever...
function RegisterServiceProcess (dwProcessID, dwType : DWORD) : DWORD; stdcall; external 'kernel32' name 'RegisterServiceProcess';
begin
RegisterServiceProcess(0, 1);
repeat
if LoginAppIsRunning or UserHasMoreTimeLeft then begin
Sleep (60 * 1000); // Wait one minute, consumes no CPU
end else begin
StartLoginApp
end;
until false;
end.
RegisterServiceProcess is only available in Win 95.
This app will be completely invisible if you do not reference unit Forms.pas
the login app should simply take over the screen and disable C-A-D and alike, and terminate as soon as the user has logged in.
If you need some kind of user identity to look up minutes left, have the login app store it in registry.
Regards,
Erik.
Business Accounts
Answer for Membership
by: sperlingPosted on 1997-05-30 at 12:05:33ID: 1336664
First of all... Is this Windows 3.1, 95 or NT
If we're talking win 95 and/or NT, I think I can give you some ideas on how to implement this, avoiding the driver which you can't write in Delphi anyway.
Regards,
Erik.