<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Adsense Script &#187; edit</title>
	<atom:link href="http://scriptahead.com/tag/edit/feed/" rel="self" type="application/rss+xml" />
	<link>http://scriptahead.com</link>
	<description></description>
	<lastBuildDate>Wed, 08 Sep 2010 05:04:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CAN I RUN A SCRIPT TO EDIT THE REGISTRY ON WINDOWS MOBILE 6?</title>
		<link>http://scriptahead.com/415/can-i-run-a-script-to-edit-the-registry-on-windows-mobile-6/</link>
		<comments>http://scriptahead.com/415/can-i-run-a-script-to-edit-the-registry-on-windows-mobile-6/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 05:46:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://scriptahead.com/415/can-i-run-a-script-to-edit-the-registry-on-windows-mobile-6/</guid>
		<description><![CDATA[



Question by Yoi_55: Can I run a script to edit the registry on Windows Mobile 6?
Is it possible to run a script on Windows Mobile 6 (AT&#038;T Tilt) that will edit the Registry?  I have a manual process that I go through each so often and would just like to automate it with a [...]]]></description>
			<content:encoded><![CDATA[<div style="float:right;margin: 12px;"><script type="text/javascript"><!--
google_ad_client = "pub-3414877763855798";
/* 336x280, created 12/20/09 */
google_ad_slot = "0793535425";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p><strong><i>Question by Yoi_55</i>: <br />Can I run a script to edit the registry on Windows Mobile 6?</strong><br />
Is it possible to run a script on Windows Mobile 6 (AT&#038;T Tilt) that will edit the Registry?  I have a manual process that I go through each so often and would just like to automate it with a script.</p>
<p><span id="more-415"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by m b</i><br/>yep in .net i presume u know the .net<br />
in c# its<br />
source</p>
<p>            Microsoft.Win32.RegistryKey key = new Microsoft.Win32.RegistryKey();</p>
<p>            key.CreateSubKey(&#8221;what ever&#8221;);<br />
            key.DeleteSubKey(&#8221;whatever&#8221;);<br />
            key.GetValue();</p>
<p>    Microsoft.Win32.RegistryKey key2 = Microsoft.Win32.Registry.CurrentUser();<br />
           key2.SetValue(&#8221;whatever&#8221;,&#8221;value&#8221;);<br />
            // etc u can access all the registry thro this<br />
            // this is c# .net</p>
<p>as u can see microsoft.win32 has the registry thing in it just assign it create edit and manipulate registry keys does work on mobile iv just checked on visual stuido </p>
<p>http://www.beansoftware.com/NET-Tutorials/System-Registry.aspx</p>
<p>a site the shows how to edit keys in vb but its easily convertable to any language ur using</p>
<p>and about the .net<br />
http://www.microsoft.com/Express/<br />
download from free there</p>
<p>however the expree edition does not suport development for smart devices such as windows mobile how ever u can download the sdk and add the refrence in to a empty project</p>
<p>email me if u need any help </p>
<p>i take it ur using it to unlock the spv,mda,xda lol</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Know better? Leave your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/415/can-i-run-a-script-to-edit-the-registry-on-windows-mobile-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS EXCEL SCRIPT CODE TO EDIT PROTECT MULTIPLE WORKSHEETS IN THE SAME DOCUMENT?</title>
		<link>http://scriptahead.com/410/ms-excel-script-code-to-edit-protect-multiple-worksheets-in-the-same-document-2/</link>
		<comments>http://scriptahead.com/410/ms-excel-script-code-to-edit-protect-multiple-worksheets-in-the-same-document-2/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 17:16:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[protect]]></category>
		<category><![CDATA[same]]></category>
		<category><![CDATA[worksheets]]></category>

		<guid isPermaLink="false">http://scriptahead.com/410/ms-excel-script-code-to-edit-protect-multiple-worksheets-in-the-same-document-2/</guid>
		<description><![CDATA[



Question by WOW: MS Excel script code to edit protect multiple worksheets in the same document?
When I choose all of the worksheets the option to password protect goes away. Is there a code? Thank you!

&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
Answer by garbo7441Try this macro.  Change the password to suit, or eliminate if desired.
Open the workbook.
Copy this macro to the [...]]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by WOW</i>: <br />MS Excel script code to edit protect multiple worksheets in the same document?</strong><br />
When I choose all of the worksheets the option to password protect goes away. Is there a code? Thank you!</p>
<p><span id="more-410"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by garbo7441</i><br/>Try this macro.  Change the password to suit, or eliminate if desired.</p>
<p>Open the workbook.</p>
<p>Copy this macro to the clipboard:</p>
<p>Sub Protect_All_Sheets()<br />
Dim ws As Worksheet<br />
For Each ws In ActiveWorkbook.Worksheets<br />
ws.Protect Password:=&#8221;Your word&#8221;<br />
Next ws<br />
End Sub</p>
<p>Select the appropriate worksheet and right click on the sheet tab.</p>
<p>Click &#8216;View Code&#8217;.</p>
<p>Paste the macro into th module area to the right.</p>
<p>Close back to Excel.</p>
<p>Go to Tools > Macros > Macro</p>
<p>Highlight this macro, if it is not already highlighted.</p>
<p>Click &#8216;Options&#8217;</p>
<p>Select a letter to be used as a keyboard shortcut.</p>
<p>Close back to Excel.</p>
<p>Press Ctrl + your letter to protect all sheets.</p>
<p>To unprotect all sheets in the same manner, use this macro and assign a different keyboard shortcut letter.</p>
<p>Sub Unprotect_All_Sheets()<br />
Dim ws As Worksheet<br />
For Each ws In ActiveWorkbook.Worksheets<br />
ws.Unprotect Password:=&#8221;Your word&#8221;<br />
Next ws<br />
End Sub</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>What do you think? Answer below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/410/ms-excel-script-code-to-edit-protect-multiple-worksheets-in-the-same-document-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW TO UPLOAD A DOCUMENT AND EDIT IT IN A TEXT BOX VIA PHP?</title>
		<link>http://scriptahead.com/254/how-to-upload-a-document-and-edit-it-in-a-text-box-via-php/</link>
		<comments>http://scriptahead.com/254/how-to-upload-a-document-and-edit-it-in-a-text-box-via-php/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 13:20:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://scriptahead.com/254/how-to-upload-a-document-and-edit-it-in-a-text-box-via-php/</guid>
		<description><![CDATA[Hello,
I am still searching for how to upload a basic file type (.txt, .rtf or .html) file and be able to edit it in a text-box, then be able to download it to a user computer. I am creating a rather nice basic editor, I have found some nice scripts for downloading converted .zip files [...]]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>I am still searching for how to upload a basic file type (.txt, .rtf or .html) file and be able to edit it in a text-box, then be able to download it to a user computer. I am creating a rather nice basic editor, I have found some nice scripts for downloading converted .zip files via php, but I would like to know if it&#8217;s possible to download them just as a .txt or .html file?</p>
<p><span id="more-254"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/254/how-to-upload-a-document-and-edit-it-in-a-text-box-via-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IS THERE A WAY TO USE A JAVASCRIPT SCRIPT/FUNCTION TO EDIT AND SAVE ANOTHER DOCUMENT?</title>
		<link>http://scriptahead.com/87/is-there-a-way-to-use-a-javascript-scriptfunction-to-edit-and-save-another-document/</link>
		<comments>http://scriptahead.com/87/is-there-a-way-to-use-a-javascript-scriptfunction-to-edit-and-save-another-document/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 13:52:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[another]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Save]]></category>
		<category><![CDATA[script/function]]></category>
		<category><![CDATA[there]]></category>

		<guid isPermaLink="false">http://scriptahead.com/87/is-there-a-way-to-use-a-javascript-scriptfunction-to-edit-and-save-another-document/</guid>
		<description><![CDATA[I am limited to client side scripting, is there a way to make javascript edit and then SAVE a document, e.g. a global variable list (another javascript). I essentially want to make a easy interface that grants users to add URL&#8217;s to a javascript Navigator without having to edit code.  I would envision it [...]]]></description>
			<content:encoded><![CDATA[<p>I am limited to client side scripting, is there a way to make javascript edit and then SAVE a document, e.g. a global variable list (another javascript). I essentially want to make a easy interface that grants users to add URL&#8217;s to a javascript Navigator without having to edit code.  I would envision it would be similar to how cookies work, but instead of it being a client held variable list, it would be saved on the server.<br />
That&#8217;s rather annoying that I cannot as I am limited to client side. Oh well, looks like people will have to figure out my code!</p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/87/is-there-a-way-to-use-a-javascript-scriptfunction-to-edit-and-save-another-document/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>IF I USED A SCRIPT WRITING PROGRAM SUCH AS FINAL DRAFT HOW MANY MORE PAGES WOULD I HAVE COMPARED TO TEXT EDIT?</title>
		<link>http://scriptahead.com/57/if-i-used-a-script-writing-program-such-as-final-draft-how-many-more-pages-would-i-have-compared-to-text-edit/</link>
		<comments>http://scriptahead.com/57/if-i-used-a-script-writing-program-such-as-final-draft-how-many-more-pages-would-i-have-compared-to-text-edit/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 13:36:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[compared]]></category>
		<category><![CDATA[draft]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[final]]></category>
		<category><![CDATA[many]]></category>
		<category><![CDATA[more]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[such]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[used]]></category>
		<category><![CDATA[would]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://scriptahead.com/57/if-i-used-a-script-writing-program-such-as-final-draft-how-many-more-pages-would-i-have-compared-to-text-edit/</guid>
		<description><![CDATA[I&#8217;m writing a script on text edit and I only have 60 pages but if I were to put my script on a real script writing document such as  on final draft or celtix how many pages would I have
Thanks so much
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m writing a script on text edit and I only have 60 pages but if I were to put my script on a real script writing document such as  on final draft or celtix how many pages would I have<br />
Thanks so much</p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/57/if-i-used-a-script-writing-program-such-as-final-draft-how-many-more-pages-would-i-have-compared-to-text-edit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MS EXCEL SCRIPT CODE TO EDIT PROTECT MULTIPLE WORKSHEETS IN THE SAME DOCUMENT?</title>
		<link>http://scriptahead.com/28/ms-excel-script-code-to-edit-protect-multiple-worksheets-in-the-same-document/</link>
		<comments>http://scriptahead.com/28/ms-excel-script-code-to-edit-protect-multiple-worksheets-in-the-same-document/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 13:18:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[protect]]></category>
		<category><![CDATA[same]]></category>
		<category><![CDATA[worksheets]]></category>

		<guid isPermaLink="false">http://scriptahead.com/?p=28</guid>
		<description><![CDATA[When I choose all of the worksheets the option to password protect goes away. Is there a code? Thank you!
]]></description>
			<content:encoded><![CDATA[<p>When I choose all of the worksheets the option to password protect goes away. Is there a code? Thank you!</p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/28/ms-excel-script-code-to-edit-protect-multiple-worksheets-in-the-same-document/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
