<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: how to create our own set up file in vb6.0</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-our-own-set-up-file-in-vb60/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-our-own-set-up-file-in-vb60/</link>
	<description></description>
	<pubDate>Fri, 25 May 2012 22:33:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Ankurd</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-our-own-set-up-file-in-vb60/#comment-104754</link>
		<dc:creator>Ankurd</dc:creator>
		<pubDate>Mon, 12 Mar 2012 08:04:20 +0000</pubDate>
		<guid isPermaLink="false">#comment-104754</guid>
		<description>How to create .MSI file in vb6.0</description>
		<content:encoded><![CDATA[<p>How to create .MSI file in vb6.0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vester</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-our-own-set-up-file-in-vb60/#comment-96501</link>
		<dc:creator>Vester</dc:creator>
		<pubDate>Tue, 13 Sep 2011 06:40:05 +0000</pubDate>
		<guid isPermaLink="false">#comment-96501</guid>
		<description>you can encrypt Password as long data type
just sample convert the asc code of Character and then make it like this

for i=0 to len(pass)
  temp =  asc(pass) * i
next</description>
		<content:encoded><![CDATA[<p>you can encrypt Password as long data type<br />
just sample convert the asc code of Character and then make it like this</p>
<p>for i=0 to len(pass)<br />
  temp =  asc(pass) * i<br />
next</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ammadkhan01</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-our-own-set-up-file-in-vb60/#comment-87364</link>
		<dc:creator>Ammadkhan01</dc:creator>
		<pubDate>Tue, 01 Feb 2011 14:44:11 +0000</pubDate>
		<guid isPermaLink="false">#comment-87364</guid>
		<description>thanks for very nice instructions sourour. i have successfully made a setup file, thanks once again</description>
		<content:encoded><![CDATA[<p>thanks for very nice instructions sourour. i have successfully made a setup file, thanks once again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bus</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-our-own-set-up-file-in-vb60/#comment-78844</link>
		<dc:creator>Bus</dc:creator>
		<pubDate>Sat, 03 Jul 2010 06:25:07 +0000</pubDate>
		<guid isPermaLink="false">#comment-78844</guid>
		<description>how i can create a setup  in vb pllllzzzzzzzz tel me soon?????</description>
		<content:encoded><![CDATA[<p>how i can create a setup  in vb pllllzzzzzzzz tel me soon?????</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sourour</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-our-own-set-up-file-in-vb60/#comment-74658</link>
		<dc:creator>Sourour</dc:creator>
		<pubDate>Tue, 09 Mar 2010 09:47:27 +0000</pubDate>
		<guid isPermaLink="false">#comment-74658</guid>
		<description>follow the following steps to create the installer for ur project. but before trying this make sure that u have created the executable(.exe) for ur project. hope u know how to create that.

1.close ms vb6.0 ide
2.click start&#62;-programs-&#62;microsoft visual studio 6.0-&#62;microsoft visual studio 6.0 tools-&#62;package and deployment wizard
3.click browse to locate ur project file(.vbp)
4.click package
5.click yes to start the recompilation process
6.in package type select standard setup package and click next
7.select the destination where u want to create the package folder for ur project.this folder will contain all the supported and main application files required to install ur apps in some other client machine.
8.click yes to create the folder if it doesn't exist and click next
9.the next list that will come will display all necessary files to build the setup.click add to insert some other files from ur project to the said list.if u any access database file,click this button,locate ur db file and click open to add the file to the list.this list will also help u to remove any unnecessary files that u donot wish to install in the target machine with apps.u can also add help files(if any) for project from this option.but do not ever try to remove the .dll,.ocx,.lib or .exe files.click next
10.if u want ur setup becomes a standalone package select single cab otherwise if u want part installer then select multiple cab.if u select the 2nd option u have mention the size of the floppy disks.then the wizard will ask u insert the floppies one after another.i will recommend u not to use this option.click next
(if u see any shared files box or dependency information box just skip that)
11.insert a title for the installer and click next
12.in the next screen adjust the menu apperance the setup will create for u.this will become the startmenu shortcuts for ur apps.
13.click next-&#62;click next
14.in the script name box u do not require to enter anything but do not erase the default text.
15.click finish to build the installer.
16.click close-&#62;click close

after the installer is created just goto the package folder and there u will find a file "setup.exe".double click that to run the installer.</description>
		<content:encoded><![CDATA[<p>follow the following steps to create the installer for ur project. but before trying this make sure that u have created the executable(.exe) for ur project. hope u know how to create that.</p>
<p>1.close ms vb6.0 ide<br />
2.click start&gt;-programs-&gt;microsoft visual studio 6.0-&gt;microsoft visual studio 6.0 tools-&gt;package and deployment wizard<br />
3.click browse to locate ur project file(.vbp)<br />
4.click package<br />
5.click yes to start the recompilation process<br />
6.in package type select standard setup package and click next<br />
7.select the destination where u want to create the package folder for ur project.this folder will contain all the supported and main application files required to install ur apps in some other client machine.<br />
8.click yes to create the folder if it doesn&#8217;t exist and click next<br />
9.the next list that will come will display all necessary files to build the setup.click add to insert some other files from ur project to the said list.if u any access database file,click this button,locate ur db file and click open to add the file to the list.this list will also help u to remove any unnecessary files that u donot wish to install in the target machine with apps.u can also add help files(if any) for project from this option.but do not ever try to remove the .dll,.ocx,.lib or .exe files.click next<br />
10.if u want ur setup becomes a standalone package select single cab otherwise if u want part installer then select multiple cab.if u select the 2nd option u have mention the size of the floppy disks.then the wizard will ask u insert the floppies one after another.i will recommend u not to use this option.click next<br />
(if u see any shared files box or dependency information box just skip that)<br />
11.insert a title for the installer and click next<br />
12.in the next screen adjust the menu apperance the setup will create for u.this will become the startmenu shortcuts for ur apps.<br />
13.click next-&gt;click next<br />
14.in the script name box u do not require to enter anything but do not erase the default text.<br />
15.click finish to build the installer.<br />
16.click close-&gt;click close</p>
<p>after the installer is created just goto the package folder and there u will find a file &#8220;setup.exe&#8221;.double click that to run the installer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-our-own-set-up-file-in-vb60/#comment-74604</link>
		<dc:creator>Carlosdl</dc:creator>
		<pubDate>Mon, 08 Mar 2010 14:08:31 +0000</pubDate>
		<guid isPermaLink="false">#comment-74604</guid>
		<description>Addis12345, your question has no relation with the original question.  Please create a new one.</description>
		<content:encoded><![CDATA[<p>Addis12345, your question has no relation with the original question.  Please create a new one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Addis12345</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-our-own-set-up-file-in-vb60/#comment-74569</link>
		<dc:creator>Addis12345</dc:creator>
		<pubDate>Sat, 06 Mar 2010 15:41:03 +0000</pubDate>
		<guid isPermaLink="false">#comment-74569</guid>
		<description>I need to create a source code for a hidden password " the one with the Astrix " tell me how</description>
		<content:encoded><![CDATA[<p>I need to create a source code for a hidden password &#8221; the one with the Astrix &#8221; tell me how</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- dynamic -->
