Q&A: I TRIED GOOGLE ADSENSE BUT WHEN I PUT THE HTML CODE IN IT SAYS YOUR NOT ABLE TO INSERT JAVA SCRIPT?
WHERE CAN I FIND A ‘PHOTO FACE-OFF’ SCRIPT FOR MY WEBSITE?
about 7 hours ago - No comments
Question by Your Personal Trainer: Where can I find a ‘photo face-off’ script for my website? On my website I want visitors to choose the best of 2 random images. (just like on www.photofaceoff.co.uk) Where can I find a script for this? —————————————— Answer by TAKE UR TYM 2 ANSW3R WID DETAILSASK A PROGRAMMER OR
CAN ANYONE GIVE ME A SCRIPT HTML CODE TO DISPLAY SERVER FILES ON SITE?
about 3 days ago - 5 comments
Question by evilflame.rulz: Can anyone give me a script HTML code to display server files on site? i use 000webhost and i want it to display whatever is in a certain folder in the server. i use this so that files uploaded from home can be accessed from laptop without needing to login to net2ftp.
IS THERE ANY SCRIPT LIKE ASK.FM, THAT I CAN INSTALL ON MY OWN WEBSITE ?
about 4 days ago - No comments
Question by : Is there any script like ask.fm, that I can install on my own website ? I think that all of you well know ask.fm website, and I am interested in having such a script in my website. Is it possible to have some thing like that? Thnx a lot. —————————————— Answer by
HOW DO YOU OPEN A NEW INTERNET EXPLORER WINDOW AND POINT IT TO A PARTICULAR SITE USING A DOS COMMAND SCRIPT?
about 6 days ago - 4 comments
Question by fwcelticbrigand: How do you open a new World wide web Explorer window and point it to a particular site using a DOS command script? —————————————— Answer by Man.with.a.PlanBlue Screen of Death coming up. Device contention. —————————————— Know better? Leave your own answer in the comments!
WHERE CAN I GET PHP SCRIPT FOR SECURE PASSWORD PROTECTION FOR MY WEBSITE ?
about 1 week ago - 2 comments
Question by ViCPad: where can i get PHP script for secure password protection for my website ? Hi have a website, where I can use htaccess file and folder protection but creating usernames and password is a real drag… where could I get a good and fully functional script what I can run on my
I HAVE A HUGE HTML CODE FROM STL BIO BUILDER WHEN I COPE AND PASTW IT IN MY BIOS IT DOESN’T WORK WOULD YOU KNW
about 1 week ago - No comments
Question by mike t: I have a massive html code from stl bio builder when I cope and pastw it in my bios it doesn’t work would you knw
Q&A: HOW DO I INCORPORATE NOAH’S CLASSIFIEDS SCRIPT IN MY JOOMLA WEBSITE?
about 1 week ago - No comments
Question by Lori: How do I incorporate Noah’s Classifieds script in my Joomla website? I’m creating a classifieds section on my site and wish to use Noah’s Classifieds. What do I do? —————————————— Answer by KeithThere does not seem to be a bridge for Noah’s Classifieds and Joomla!. Have done a search at http://extensions.joomla.org for
DOES ANYONE KNOW A GOOD SITE TO GET THE SCRIPT TO “GOOD BURGER” STARING KENAN AND KEL?
about 2 weeks ago - No comments
Question by Bethany L: does anyone know a good site to get the script to “good Burger” staring kenan and kel? I just need a script or screen play of the motion picture —————————————— Answer by meatwww.script-o-rama.com www.simplyscripts.com www.imsdb.com —————————————— Give your own answer to this question below!
HOW CAN L FIND ORIGINAL CREATOR FOR A SOFTWARE SCRIPT ?
about 2 weeks ago - No comments
Question by jkim5200: How can l find original creator for a software script ? Since so many markers are selling the same or similar script under slightly different name, such as Instant video site script, instant video site creator, Youtube in A Box pro, etc., with the price from $ 2 to $ 97.75, it’s
Q&A: DOES ANYONE KNOW OF A GOOD FREE SITE THAT TEACHES ACTING TECHNIQUES AND SCRIPT ANALYSIS?
about 2 weeks ago - No comments
Question by Philosophicplease: Does anyone know of a good free site that teaches acting techniques and script analysis? Any info would be of help. —————————————— Answer by mnkstapelI know already how to do most of those things, so if you post more specific question under Theatre and Acting, I could answer them for you. ——————————————










about 2 years ago
Try this macro. Change the password to suit, or eliminate if desired.
Open the workbook.
Copy this macro to the clipboard:
Sub Protect_All_Sheets()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
ws.Protect Password:=”Your word”
Next ws
End Sub
Select the appropriate worksheet and right click on the sheet tab.
Click ‘View Code’.
Paste the macro into th module area to the right.
Close back to Excel.
Go to Tools > Macros > Macro
Highlight this macro, if it is not already highlighted.
Click ‘Options’
Select a letter to be used as a keyboard shortcut.
Close back to Excel.
Press Ctrl + your letter to protect all sheets.
To unprotect all sheets in the same manner, use this macro and assign a different keyboard shortcut letter.
Sub Unprotect_All_Sheets()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
ws.Unprotect Password:=”Your word”
Next ws
End Sub