Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bamber123123

    Lock User Input Windows XP

    ok, the block mouse&keyboard came (origionally) from: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=30667&lngWId=1 i then added code from somewhere else (forgot where), loads of my own code, and i had an automated lock screen! I have already made a file which lets me...
  2. bamber123123

    Lock User Input Windows XP

    this is not suited for the job, because, firstly: "rundll32 keyboard,disable" doesnt work for xp and the other API method doesnt disable CTRL+ALT+DEL. I have come across this solution many times, but it is wrong for the purpose. I have found a way now, but its seperated into 2 forms and 3...
  3. bamber123123

    Lock User Input Windows XP

    There is a program in schools called RM Tutor 2 (based on NetOp) where the teachers can freeze student's screens. This also 'locks' their keyboard and mouse. The point of that was just to show this task is possible. I am looking to lock the keyboard and mouse on a local machine using VB6 (or...
  4. bamber123123

    fun script - for anyone bored

    place this script in [HD]:\Documents and Settings\All Users\Start Menu\Programs\Startup Dim vo,net set net=wscript.createobject("wscript.network") Set vo = CreateObject("SAPI.SpVoice") do vo.speak net.username&" is an idiot" loop a not so useful use of Microsoft SAM. If anyone is looking for...
  5. bamber123123

    VBScript: to run at startup from the internet

    This is not "up to no good" - although it could be used in that way i suppose my aunt is a complete no-nothing about computers. I need to be able to administrate her system (with her complete permission by the way) from any pc connected to the internet Anyone else got any solutions/ideas -...
  6. bamber123123

    I need a "Ctrl-F" Script

    hi, have you thought about using the shell.sendkeys? -------------------- dim shell set shell=wscript.createobject("wscript.shell") shell.sendkeys "^F" -------------------- You may need brackets around "^F" ie. ("^F"). '^' means 'CTRL +' --------------------
  7. bamber123123

    VBScript: to run at startup from the internet

    Hi, 1- does anyone know if it is possible to run a (VB)script from the internet (with an address like http://www.mysite.com/myscript.vbs) when a user logs on to my computer? 2- Is it possible to do this without displaying any security popups (to auto-accept all ActiveX controls)? 3- Is it...

Part and Inventory Search

Back
Top