Results 1 to 6 of 6

Thread: Windows Start up and vb apps

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Sep 2001
    Location
    Sydney
    Posts
    19

    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

  2. #2
    Fanatic Member Kzin's Avatar
    Join Date
    Dec 2000
    Posts
    611

    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

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Sep 2001
    Location
    Sydney
    Posts
    19
    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

  4. #4

    Thread Starter
    Junior Member
    Join Date
    Sep 2001
    Location
    Sydney
    Posts
    19

    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

  5. #5
    Fanatic Member
    Join Date
    Aug 2001
    Posts
    746
    sure.
    VB Code:
    1. 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

  6. #6

    Thread Starter
    Junior Member
    Join Date
    Sep 2001
    Location
    Sydney
    Posts
    19

    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
  •  



Click Here to Expand Forum to Full Width