Computers & Internet Logo

Related Topics:

Sendkey location location on keyboard

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

tip

Make Your Keyboard Lights Do DISCO

Friends this is just a small trick that will just make your dance means its lights will go like disco lights of a midnight club.your keyboards light goes in rhythmic way it too cool u try and make fun .These codes when executed makes your Caps, Num, Scroll lock keys flash..
very cool...i hav tried it...
1.This piece of code makes ur keyboard a live disco...

Set wshShell =wscript.CreateObject("WScript.Shell")

do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop


2.This one makes it looks like a chain of light....

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 200
wshshell.sendkeys "{CAPSLOCK}"
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wscript.sleep 50
wshshell.sendkeys "{SCROLLLOCK}"
loop



Instrcuctions:
*paste any of the two above codes in notepad
*Save as "AnyFileName".vbs
*Run the file
*to stop, launch task manager and then under "Processes" end wscript.exe

I hope u would like it...



on Dec 23, 2009 • Computers & Internet
0helpful
1answer

Num lock

If you use the number pad frequently during your daily computer usage, you may want to have the "Num Lock" key enabled when the computer starts up.
You can enable Num Lock automatically in two different ways: one involves modifying a value in the registry and the other requires you to create a small script in Notepad.
Activate Num Lock Through the Registry
Enter the registry and navigate to "HKEY_CURRENT_USER\Control Panel\Keyboard\." Double-click on the value labeled "IntitialKeyboardIndicators," which has a value of 0,1 or 2.
Change the value to "2" to turn Num Lock on after logon, "0" to turn Num Lock off after logon and "1" to disable Num Lock.
Create a Num Lock Script
Configure a script that runs to automatically change the Num Lock state.
Depending on where you place the script, you can activate the script for a single user or all users on the computer. Open Notepad and paste the following code
"set WshShell = CreateObject("WScript.Shell")
WshShell.SendKeys "{NUMLOCK}"
Save the file as "numlock.vbs," including the quotes to change the notepad file to a script.
Paste the file in the directory "Documents and Settings\All Users\Start Menu\Programs\Startup" to enable Num Lock for all users by default.
For a single user, copy it to their startup folder instead of All Users.
Enter the BIOS
Enter your computer's BIOS before Windows boots up to change the integrated Num Lock settings.
Depending on your motherboard manufacturer, different key combinations allow you to access the BIOS.
Common keys include "F1," "F2," "Del," "ESC" or "F10."
Consult your computer's documentation for specifics.
Navigate through the basic or advanced options until you find a section dedicated to enable or disable Num Lock on boot.
Enable in Linux
Linux is an alternate operating system.
While the BIOS method may work for Linux, you can also change the process through the options if using KDE Linux.
Navigate to "Control Panel" and click "Peripherals." Select "Keyboard" and select the option "Turn on" under the heading labeled "NumLock on KDE Startup."

How to Set the NUM LOCK State at Logon in Windows XP
http://support.microsoft.com/kb/314879

How do I enable the NUM LOCK key for the logon screen
http://support.microsoft.com/kb/154529
0helpful
1answer

Where i can get the unlimited zoning permit in cityville

copy paste below link in your browser and hit enter

http://apps.facebook.com/cityville/Reward.php?frHost=20147946132&frId=0685ca56d9d78fd45545909803bf45cc&frType=permits_request&sendKey=30277b39bd947ee34eddb22d8d16b9d8%24%24glG!O%2CVT5YyMY4Mjy%2CS%280_Nx*XTKMNvmoasa%287119huE33x&sig=e2d8b31e470216184b9cea789ec495c6&sendkey=30277b39bd947ee34eddb22d8d16b9d8%24%24glG!O%2CVT5YyMY4Mjy%2CS%280_Nx*XTKMNvmoasa%287119huE33x
0helpful
1answer

How do I turn wireless on on a amilo laptop

1. Open your Notepad, copy&paste this:


Set WshShell = WScript.CreateObject("WScript.Shell")

Set oExec = WshShell.Exec("C:\Program Files\Launch Manager\WisWBSet.exe")

do while WshShell.AppActivate("Wireless Status Option")=False

WScript.Sleep 100

loop

WScript.Sleep 100

WshShell.sendkeys("{TAB}{TAB}{LEFT}~")


2. Save this file as "<somename>.vbs" somewhere on your harddisk.



3. Copy a short cut and drag it into your "Start Menu / Programs / Startup" to ensure it starts automatically when rebooting.

0helpful
2answers

Need an unlock code for a blackberry 8100. IMEI 356920.01.438218.7

You can Unlock the Blackberry 8100 model mobile using the Unlock code in here
http://www.unlocking4u.com/blackberry-8100/rs6wp9/ You can buy the Unlock code at low cost and unlock Your mobile.
1helpful
1answer

How to do Undo and Redo in Visaul Basic Project ? I wanna do in my application(Project). Suggest me Code for it .

Undo command: if you want an undo command, the best way to do it is to 'send' key strokes to the textbox that you want to use. You will need to send Ctrl+Z. You can do this with this code:
'=========================
'General Declarations
Private Declare Function MapVirtualKey Lib "user32" Alias "MapVirtualKeyA" (ByVal wCode As Long, ByVal wMapType As Long) As Long Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)
Private Const KEYEVENTF_KEYUP = &H2
Private Sub Command1_Click() 'The procedure that will run the undo command
Text1.SetFocus 'The textbox that you want to 'undo'
'Send Ctrl+Z
keybd_event 17, 0, 0, 0
keybd_event 90, 0, 0, 0
'Release Ctrl+Z
keybd_event 90, 0, KEYEVENTF_KEYUP, 0
keybd_event 17, 0, KEYEVENTF_KEYUP, 0
End Sub
'===================================

Another way to do this is to use the SendKeys statement. However, the API function gives you more control.
'===================================
Private Sub Command1_Click() 'The procedure that will run the undo command
Text1.SetFocus 'The textbox that you want to 'undo'
'Send Ctrl+Z
SendKeys "^Z"
End Sub
'====================================
0helpful
1answer

Double click a cell using VBA

This assumes you want to edit the content of that cell: Code: Range("B3").Select SendKeys "{F2}", True Double-Clicking a cell is the same as F2 (edit). Let me know how this works.
Not finding what you are looking for?

54 views

Ask a Question

Usually answered in minutes!

Top Toshiba Computers & Internet Experts

ExpressFiX
ExpressFiX

Level 2 Expert

691 Answers

k24674

Level 3 Expert

8093 Answers

Brad Brown

Level 3 Expert

19187 Answers

Are you a Toshiba Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...