Q&A: I TRIED GOOGLE ADSENSE BUT WHEN I PUT THE HTML CODE IN IT SAYS YOUR NOT ABLE TO INSERT JAVA SCRIPT?
MY SITE IS HOSTED ON YAHOO DOMAIN IN PHP , I WANT TO SEND A MAIL VIA PHP SCRIPT BUT I MAIL FUNCTION NOT WORKED?
about 4 days ago - No comments
Question by : my site is hosted on yahoo domain in php , i want to send a mail via php script but i mail function not worked? I hosted a my site in php on yahoo domail. so i want to send a mail from php script to my hosted domain. Now mail function
HOW CAN I WRITE A SCRIPT IN PHP TO PARSE OUT COMMA SEPARATED WORDS (LIKE IN A SOCIAL WEB SITE)?
about 1 week ago - 1 comment
Question by John C: How can I write a script in php to parse out comma separated words (like in a social web site)? For example, If the user inputs a list of tags such as: tag,tagone,tag,tagtwo I want php to parse out the individual words and send them back to the server using regular
Q&A: I NEED HELP MAKING MY HTML CODE EASIER TO DO?
about 1 week ago - 1 comment
Question by Mark G: I need help making my HTML code easier to do? Hi, I have a website called www.xlivewire.com. its gotten pretty popular, and since then i’ve been getting a lot of game and video requests making the website a harder upkeep. I know there is a way to make my job simpler
NEED A MOVIE SEARCH ENGINE SCRIPT FOR A WEBSITE?
about 1 week ago - 1 comment
Question by Nikki: Need a motion picture search engine script for a website? I need a motion picture search box script for a website does anyone know of one? Or a program that I can buy maybe? —————————————— Answer by d12_xecutioneruse Ares 2 download Motion picture or ne other stuffs …u can download it frm
OPENING WHOLE SCRIPT (SITE) WITH DREAMWEAVER 8?
about 2 weeks ago - 1 comment
Question by jamie: Opening whole script (site) with dreamweaver 8? I havent used dreamweaver that much and I have all my files from my site. I want to open them in dreamweaver to edit some stuff. I just dont know how to add a site if you understand me. I dont need to upload or
IS THERE A FREE SCRIPT THAT ALLOWS ME TO UPLOAD RESUMES OR FILES ON A SITE?
about 2 weeks ago - No comments
Question by Roy Sencio: Is there a free script that allows me to upload resumes or files on a site? I am putting up a website that will allow people to apply and submit resumes on a web form. I am looking for a script that allows them to click a button, that opens a
IS THERE A PROGRAM OR SCRIPT THAT WILL AUTO UPDATE MY WEBSITE AT A TIME OF MY CHOOSING?
about 3 weeks ago - No comments
Question by riku5464: Is there a program or script that will auto update my website at a time of my Choosing? Is there a program or script that will auto update my website at a time of my Choosing? —————————————— Answer by ComputerHelpGosh, tough one this. I write software to do that but… if you
WHAT SCRIPT OR SOFTWARE DOES THIS SITE USE?
about 3 weeks ago - No comments
Question by k.bryk: What script or software does this site use? I was wondering what software or script this website uses, I have seen many sites using this I have always wondered what it was. http://perezhilton.com/ I’m not asking about the scripting language I was wondering if there actually was one I could download or
WE FOUND STRANGE SCRIPT ON SITE, WHAT IS IT?
about 1 month ago - 1 comment
Question by ric: We found strange script on site, what is it? Our website will not open when you visit site a message pops and say”s site is infected with “Trojan-Downloader.Script”. What is this, it say”s it has been on site since november of 2009, we had some work done on site, could this script
I AM CREATING A WEBSITE IN JAVA SCRIPT \ HTML AND I NEED A ADVANCED BACKGROUND CODE….PLEASE HELP?
about 1 month ago - 1 comment
Question by jesman789: I am creating a website in java script \ HTML and I need a advanced background code….please help? I need to know the entire code for making any background image on a website fit to the users resolution. I went on my personal and since i had such higher resolution on mine










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