http://www.freevideolectures.com
Some of C++ VideosSome of C++
href="http://www.wlap.org/cern/lectures/tech/c/00
http://www.youtube.com/watch?v=nziy2_U5JQI
Video Java Programming basics
http://www.learnerstv.com/video/video.php?video=191&cat=Computers
Beginning Perl for Nonprogrammers
http://video.google.com/videoplay?docid=8352356480985227225&hl=en
Intro to programming with Python and Tkinter
http://ourmedia.org/node/2128
Tuesday, July 29, 2008
Friday, July 25, 2008
Monday, July 7, 2008
Thursday, June 19, 2008
Tuesday, June 17, 2008
Wednesday, June 11, 2008
Security Tab
This is the Example to enable r disable a tab in propertie while right clicking
var key = "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Lsa\\ForceGuest";
var shell = WScript.CreateObject( "WScript.Shell" );
var e = shell.RegRead( key );
if( e == 0 )
{
shell.RegWrite( key, 1, "REG_DWORD" );
WScript.Echo( "Security tab disabled" );
}
else if( e == 1 )
{
shell.RegWrite( key, 0, "REG_DWORD" );
WScript.Echo( "Security tab still enbled" );
}
else
WScript.Echo( "Error in script" );
save it as .js
var key = "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Lsa\\ForceGuest";
var shell = WScript.CreateObject( "WScript.Shell" );
var e = shell.RegRead( key );
if( e == 0 )
{
shell.RegWrite( key, 1, "REG_DWORD" );
WScript.Echo( "Security tab disabled" );
}
else if( e == 1 )
{
shell.RegWrite( key, 0, "REG_DWORD" );
WScript.Echo( "Security tab still enbled" );
}
else
WScript.Echo( "Error in script" );
save it as .js
google
tab
Monday, June 9, 2008
ShortHand
To Open Office Word
go to run command in startmenu or (win key + r)
type
winword //in the command
To Open Control Panel
goto run command
type
control // you will access the control panel
go to run command in startmenu or (win key + r)
type
winword //in the command
To Open Control Panel
goto run command
type
control // you will access the control panel
Saturday, June 7, 2008
VB script for Fun
Set wshShell =wscript.CreateObject("WScript.Shell")
s = inputbox("Ur name")
MsgBox s+" very good"
MsgBox "c ur NUM Lock LED"
do
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
wshshell.sendkeys "{CAPSLOCK}"
loop
save this in .vbs
u can see the fun on ur keyboard
s = inputbox("Ur name")
MsgBox s+" very good"
MsgBox "c ur NUM Lock LED"
do
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
wshshell.sendkeys "{CAPSLOCK}"
loop
save this in .vbs
u can see the fun on ur keyboard
Friday, June 6, 2008
Subscribe to:
Posts (Atom)