|
-
Dec 1st, 2001, 08:12 AM
#1
Thread Starter
Junior Member
Windows Start up and vb apps
I am having problems with a vb cafe login program and was wondering if one of you gurus know wot to do. Here are the specs
> I want all users to log into a terminal using this program.
> Its running off win98 (server is win2k, but i dont think problem is there)
> I have added the screensaver thing to disable ctrl-alt-del. On first form load
> I need ctrl-alt-del after the person has logged in
> I have hidden the program from win98 task manager with vb code on first form load
> I have tried to add it to windows services, but it wont work because it needs a file on the network (a dynamic ip in text file - its using winsock), so i have added it to start up.
Now heres the problem, when you boot the computer, there is enough time to call up the task manager before the program loads via ctrl-alt-del, wait for the program to load, and end it before it can disable the keys and hide the task. Note that once the program is loaded, they can't ctrl-alt-del and the task is hidden, but they can do the above method to cheat their way in.
I blame it on the slow computers , but it must be my design.
Is there a way to stop this
thanks
aal04
-
Dec 1st, 2001, 11:39 AM
#2
Fanatic Member
Re: Windows Start up and vb apps
Originally posted by aal04
Now heres the problem, when you boot the computer, there is enough time to call up the task manager before the program loads via ctrl-alt-del, wait for the program to load, and end it before it can disable the keys and hide the task. Note that once the program is loaded, they can't ctrl-alt-del and the task is hidden, but they can do the above method to cheat their way in.
I blame it on the slow computers , but it must be my design.
Is there a way to stop this
thanks
aal04
Just clarifying - so you want to load so soon that no-one can Ctrl-Alt-Del and kill it - is that it?
 Looking for a friendly intelligent chat forum? Visit the white-hart.net 
-
Dec 1st, 2001, 10:04 PM
#3
Thread Starter
Junior Member
yes,
ive tried adding it to services, but it wouldnt work.
start up is too slow, they have like 10 seconds to call up the task manager before the program loads.
aal04
-
Dec 2nd, 2001, 05:22 PM
#4
Thread Starter
Junior Member
solution...sorta
I have an idea.
Do you think it would work if i killed the task manager process as soon as the form loads?
if so, does anyone have the code for killing it?
thanks
aal04
-
Dec 2nd, 2001, 05:28 PM
#5
Fanatic Member
sure.
VB Code:
shell "c:\windows\system32\taskkill.exe /f /im taskmgr.exe", vbhide
this code will work on windows XP. i havent tried it on any other operating systems but i would be interested to see if it works.
also u can put it in the windows registry under the "RUN" key. just subtract the shell part. and the vbhide.
FlameWave Technologies - internet tools
-
Dec 3rd, 2001, 07:13 AM
#6
Thread Starter
Junior Member
shift
argghh. Just found out that holding shift disables start up processes.
Anyone have an idea to get rid of that?
aal04
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|