

<rss version="2.0"
	xmlns:atom="http://www.w3.org/2005/Atom" 
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:admin="http://webns.net/mvcb/"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
		
	<channel>
		<title>RSS Feeds :: DEVPPL - Forums > Script-archive</title>
	<!--<atom:link href="http://www.devppl.com/forum" rel="self" type="application/rss+xml" />-->
		<description>TOGETHER WE ARE THE BEST</description>
		<link>http://www.devppl.com/forum</link>
		<language>en-gb</language>
		<pubDate>Tue, 17 Aug 2004 14:07:13 +0100</pubDate>
		<lastBuildDate>Sat, 21 Nov 2009 23:57:08 +0000</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MSSTI v0.0.1 - (C) 2008 leviatan21 - http://www.mssti.com/</generator>
		<copyright>Copyright : (c) RSS Feeds :: DEVPPL - Tue, 17 Aug 2004 14:07:13 +0100</copyright>
		<dc:creator>webmaster@devppl.com (DEVPPL)</dc:creator>

		<image>
			<title>RSS Feeds :: DEVPPL - Forums > Script-archive</title>
			<url>http://www.devppl.com/forum/styles/DEVPPL/imageset/site_logo.gif</url>
			<link>http://www.devppl.com/forum</link>
		</image>
		<ttl>60</ttl>
		
		<item>
			<title>Make you're program start when comp starts (vb08)</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=53995#p53995</link>
				<description><![CDATA[ <span style="color: #FF0000">Make SURE you put </span><div
class="codetitle"><b>Code:</b></div><div class="codecontent">Imports
Microsoft.Win32</div><span style="color: #FF0000">at the VERY top of the
project</span><br />Pic:<span style="color: #FF0000"><span
style="font-size: 200%; line-height: normal">C</span><span style="color:
#40FF00">li</span><span style="color: #4000FF">ck</span><span style="color:
black"> the picture</span></span><br /><img
src="http://i37.tinypic.com/34yp9vb.jpg" alt="Image" /> <br /><br />IF you
want this to write when the project starts, double click the form and put
the following code there:<br /><div
class="codetitle"><b>Code:</b></div><div class="codecontent">Private Sub
setregistryvalue()&nbsp; &nbsp; &nbsp; &nbsp; <br />'Add the executable's
path against the application's name.&nbsp; &nbsp; &nbsp; &nbsp; 'Just
change the key between (), and thats it.&nbsp; &nbsp; &nbsp; &nbsp; <br
/>Registry.SetValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run",
_&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; <br />Application.ProductName, _&nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br
/>Application.ExecutablePath)&nbsp; &nbsp; <br />End Sub</div>...<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45074">n00bl3z</a> &bull; on Thu Sep 24, 2009 10:17 pm &bull; Replies 0 &bull; Views 51</p><hr />]]></description>
					<content:encoded><![CDATA[ <span style="color: #FF0000">Make SURE you put </span><div
class="codetitle"><b>Code:</b></div><div class="codecontent">Imports
Microsoft.Win32</div><span style="color: #FF0000">at the VERY top of the
project</span><br />Pic:<span style="color: #FF0000"><span
style="font-size: 200%; line-height: normal">C</span><span style="color:
#40FF00">li</span><span style="color: #4000FF">ck</span><span style="color:
black"> the picture</span></span><br /><img
src="http://i37.tinypic.com/34yp9vb.jpg" alt="Image" /> <br /><br />IF you
want this to write when the project starts, double click the form and put
the following code there:<br /><div
class="codetitle"><b>Code:</b></div><div class="codecontent">Private Sub
setregistryvalue()&nbsp; &nbsp; &nbsp; &nbsp; <br />'Add the executable's
path against the application's name.&nbsp; &nbsp; &nbsp; &nbsp; 'Just
change the key between (), and thats it.&nbsp; &nbsp; &nbsp; &nbsp; <br
/>Registry.SetValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run",
_&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; <br />Application.ProductName, _&nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br
/>Application.ExecutablePath)&nbsp; &nbsp; <br />End Sub</div>...]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=58"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[45074]]></dc:creator>
			<dc:date>2009-09-24T22:17:20+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=53995#p53995</guid>
		</item>
			<item>
			<title>pop up a box if the x button is clicked</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=45817#p45817</link>
				<description><![CDATA[<div class="codetitle"><b>Code:</b></div><div class="codecontent">Private
Sub Form_QueryUnload&#40;Cancel As Integer, UnloadMode As Integer&#41; <br
/><br />&nbsp; &nbsp; ' Only prompt if the user hits X <br />&nbsp; &nbsp;
If UnloadMode = 0 Then <br />&nbsp; &nbsp; &nbsp; &nbsp; If Msgbox&#40;"Are
you sure you want to quit?", vbYesNo Or vbQuestion&#41; = vbNo Then Cancel
= True <br />&nbsp; &nbsp; End If <br /><br />End Sub<br /></div><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=17774">chubzyko</a> &bull; on Wed Aug 27, 2008 6:46 pm &bull; Replies 0 &bull; Views 477</p><hr />]]></description>
					<content:encoded><![CDATA[<div class="codetitle"><b>Code:</b></div><div class="codecontent">Private
Sub Form_QueryUnload&#40;Cancel As Integer, UnloadMode As Integer&#41; <br
/><br />&nbsp; &nbsp; ' Only prompt if the user hits X <br />&nbsp; &nbsp;
If UnloadMode = 0 Then <br />&nbsp; &nbsp; &nbsp; &nbsp; If Msgbox&#40;"Are
you sure you want to quit?", vbYesNo Or vbQuestion&#41; = vbNo Then Cancel
= True <br />&nbsp; &nbsp; End If <br /><br />End Sub<br /></div>]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=58"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[17774]]></dc:creator>
			<dc:date>2008-08-27T18:46:28+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=45817#p45817</guid>
		</item>
			<item>
			<title>disable the x button in a form</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=45816#p45816</link>
				<description><![CDATA[<div class="codetitle"><b>Code:</b></div><div class="codecontent">Private
Sub Form_QueryUnload&#40;Cancel As Integer, UnloadMode As Integer&#41; <br
/><br />&nbsp; &nbsp; If UnloadMode = 0 Then Cancel = True <br /><br />End
Sub<br /></div><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=17774">chubzyko</a> &bull; on Wed Aug 27, 2008 6:45 pm &bull; Replies 0 &bull; Views 352</p><hr />]]></description>
					<content:encoded><![CDATA[<div class="codetitle"><b>Code:</b></div><div class="codecontent">Private
Sub Form_QueryUnload&#40;Cancel As Integer, UnloadMode As Integer&#41; <br
/><br />&nbsp; &nbsp; If UnloadMode = 0 Then Cancel = True <br /><br />End
Sub<br /></div>]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=58"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[17774]]></dc:creator>
			<dc:date>2008-08-27T18:45:06+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=45816#p45816</guid>
		</item>
			<item>
			<title>how to launch or run a program in a button click</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=45815#p45815</link>
				<description><![CDATA[<div class="codetitle"><b>Code:</b></div><div class="codecontent">Private
Sub cmd_button1_Click&#40;&#41;<br />Call Shell
&#40;"C:\WINDOWS\system32\notepad.exe", vbNormalFocus&#41;<br />End
Sub</div><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=17774">chubzyko</a> &bull; on Wed Aug 27, 2008 6:43 pm &bull; Replies 0 &bull; Views 325</p><hr />]]></description>
					<content:encoded><![CDATA[<div class="codetitle"><b>Code:</b></div><div class="codecontent">Private
Sub cmd_button1_Click&#40;&#41;<br />Call Shell
&#40;"C:\WINDOWS\system32\notepad.exe", vbNormalFocus&#41;<br />End
Sub</div>]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=58"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[17774]]></dc:creator>
			<dc:date>2008-08-27T18:43:31+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=45815#p45815</guid>
		</item>
			<item>
			<title>type numbers only on a txtbox, no letters allowed</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=45814#p45814</link>
				<description><![CDATA[<div class="codetitle"><b>Code:</b></div><div class="codecontent">Private
Sub Text1_KeyPress&#40;Index As Integer, KeyAscii As Integer&#41;<br />If
KeyAscii > Asc&#40;"9"&#41; Then<br />KeyAscii = 0<br />End If<br /><br
/>End Sub</div><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=17774">chubzyko</a> &bull; on Wed Aug 27, 2008 6:41 pm &bull; Replies 0 &bull; Views 311</p><hr />]]></description>
					<content:encoded><![CDATA[<div class="codetitle"><b>Code:</b></div><div class="codecontent">Private
Sub Text1_KeyPress&#40;Index As Integer, KeyAscii As Integer&#41;<br />If
KeyAscii > Asc&#40;"9"&#41; Then<br />KeyAscii = 0<br />End If<br /><br
/>End Sub</div>]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=58"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[17774]]></dc:creator>
			<dc:date>2008-08-27T18:41:44+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=45814#p45814</guid>
		</item>
			<item>
			<title>Display the time in a label.</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=45813#p45813</link>
				<description><![CDATA[Private Sub Timer1_Timer()
<br />Label1.Caption = Time
<br />End Sub<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=17774">chubzyko</a> &bull; on Wed Aug 27, 2008 6:40 pm &bull; Replies 0 &bull; Views 325</p><hr />]]></description>
					<content:encoded><![CDATA[Private Sub Timer1_Timer()
<br />Label1.Caption = Time
<br />End Sub]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=58"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[17774]]></dc:creator>
			<dc:date>2008-08-27T18:40:20+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=45813#p45813</guid>
		</item>
			<item>
			<title>open My Documents in explorer window when a button is click</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=45812#p45812</link>
				<description><![CDATA[haiya guys! lately i was trying to find out how to open My Documents or
other folder in an explorer window if I clicked a button in a vb form. And
here's the code that I got. Just want to share it with you.
<br />
<br />
<br /><div class="codetitle"><b>Code:</b></div><div
class="codecontent">lngReturnValue = shell&#40;"explorer.exe ""C:\Documents
and Settings\Administrator\My Documents""", vbNormalfocus&#41;</div><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=17774">chubzyko</a> &bull; on Wed Aug 27, 2008 6:38 pm &bull; Replies 0 &bull; Views 374</p><hr />]]></description>
					<content:encoded><![CDATA[haiya guys! lately i was trying to find out how to open My Documents or
other folder in an explorer window if I clicked a button in a vb form. And
here's the code that I got. Just want to share it with you.
<br />
<br />
<br /><div class="codetitle"><b>Code:</b></div><div
class="codecontent">lngReturnValue = shell&#40;"explorer.exe ""C:\Documents
and Settings\Administrator\My Documents""", vbNormalfocus&#41;</div>]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=58"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[17774]]></dc:creator>
			<dc:date>2008-08-27T18:38:18+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=45812#p45812</guid>
		</item>
			<item>
			<title></title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=14930#p14930</link>
				<description><![CDATA[yea kind of..<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=917">dafunkymunky</a> &bull; on Fri Jul 21, 2006 7:34 am &bull; Replies 4 &bull; Views 3830</p><hr />]]></description>
					<content:encoded><![CDATA[yea kind of..]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=58"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[917]]></dc:creator>
			<dc:date>2006-07-23T07:21:59+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=14930#p14930</guid>
		</item>
			<item>
			<title>Scroll Bar ActiveX control</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=8862#p8862</link>
				<description><![CDATA[Hey guys starting with this i'll post all the apps or projects i do in
vb...some of them will be for learning purpose,,some others will be useful
to you too...so enjoy this one is an ActiveX Scrollbar program
<br />
<br />The Source code:: <a
href="http://rapidshare.de/files/5126612/Scroll_Bar_Source.zip.html"
class="postlink" onclick="this.target='_blank';"
rel="nofollow">http://rapidshare.de/files/5126612/Scroll_Bar_Source.zip.html</a>
<br />The ActiveX control :: <a
href="http://rapidshare.de/files/5126661/Scroll_Bar_ActiveX_Control.zip.html"
class="postlink" onclick="this.target='_blank';"
rel="nofollow">http://rapidshare.de/files/5126661/Scroll_Bar_ActiveX_Control.zip.html</a><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=917">dafunkymunky</a> &bull; on Thu Sep 15, 2005 3:03 pm &bull; Replies 0 &bull; Views 2035</p><hr />]]></description>
					<content:encoded><![CDATA[Hey guys starting with this i'll post all the apps or projects i do in
vb...some of them will be for learning purpose,,some others will be useful
to you too...so enjoy this one is an ActiveX Scrollbar program
<br />
<br />The Source code:: <a
href="http://rapidshare.de/files/5126612/Scroll_Bar_Source.zip.html"
class="postlink" onclick="this.target='_blank';"
rel="nofollow">http://rapidshare.de/files/5126612/Scroll_Bar_Source.zip.html</a>
<br />The ActiveX control :: <a
href="http://rapidshare.de/files/5126661/Scroll_Bar_ActiveX_Control.zip.html"
class="postlink" onclick="this.target='_blank';"
rel="nofollow">http://rapidshare.de/files/5126661/Scroll_Bar_ActiveX_Control.zip.html</a>]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=58"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[917]]></dc:creator>
			<dc:date>2005-09-15T15:03:10+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=8862#p8862</guid>
		</item>
	
	</channel>
</rss>