<?xml version="1.0" encoding="utf-8"?>
				<!-- generator="e107" -->
				<!-- content type="Forum / topic" -->
				<rss  version="2.0">
				<channel>
				<title>8051 Microcontroller Projects AVR PIC Projects Tutorials Ebooks Libraries codes : Forum / topic</title>
				<link>http://www.8051projects.net/</link>
				<description>Learn to make simple microcontroller projects, pic, 8051, avr and arm projects. download 8051 projects, tutorials, libraries, sample codes. join the microcontroller discussion forum and ask doubts regarding electronics. the best source for 8051 over internet.</description>

<language>en-gb</language>
				<copyright><a rel="license" href="http://creativecommons.org/licenses/by-nc/2.5/in/" target="_blank"><img alt="Creative Commons License" width="80" height="15" style="border-width:0" src="http://i.creativecommons.org/l/by-nc/2.5/in/80x15.png" target="_blank" /></a>This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/2.5/in/" target="_blank">Creative Commons Attribution-Noncommercial 2.5 India License</a>.<a href='http://www.8051projects.net/disclaimer.htm' target='_blank' />Rickey's World Disclaimer</a></copyright>
				<managingEditor>Ajay Bhargav - contact@nospam.com</managingEditor>
				<webMaster>contact@nospam.com</webMaster>
				<pubDate>Mon, 01 Dec 2008 13:26:58 -0800</pubDate>
				<lastBuildDate>Mon, 01 Dec 2008 13:26:58 -0800</lastBuildDate>
				<docs>http://backend.userland.com/rss</docs>
				<generator>e107 (http://e107.org)</generator>
				<ttl>60</ttl>
				<textInput>
				<title>Search</title>
				<description>Search 8051 Microcontroller Projects AVR PIC Projects Tutorials Ebooks Libraries codes</description>
				<name>query</name>
				<link>http://www.8051projects.net/search.php</link>
				</textInput>
						<item>
						<title>Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[can anyone help me in building an VB interface with coding and tutorials.<br />basically how does the communication between the PC and the microcontroller takes plce through VB interface.]]></description>
<pubDate>Mon, 21 Jan 2008 06:45:46 -0800</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[all you need to do is add a MSCOMM component in your project. this has been explained in forum many times i think. Please search it once. you might find it.. for sure.. <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' /> <br />if not we are all here <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Mon, 21 Jan 2008 10:10:08 -0800</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[thanks once again, im not yet clear because im not thorough with Visual Basic.i would like to explain my doubt once again by taking the example of the PC remote project:<br />even in this project there is a form. does this form takes part in the interaction between the microcontroller and PC.<br />in VOICE INTERACTIVE COLLEGE AUTOMATION SYSTEM PUBLISHED HERE project im intended to enquire attendance of students from phone. so what is the role of VB here.<br />please kindly help]]></description>
<author>har&lt;harshitjain87@nospam.com&gt;</author>
<pubDate>Tue, 22 Jan 2008 08:35:54 -0800</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[As i said you need to add MSCOMM component in your project..<br />In Visual Basic 6.0: right click the toolbox and select "Components". Check "Microsoft Comm Control 6.0" and click "OK". Place a MSComm control (it looks like a phone) on your form (it will be invisible at runtime). You can name the control if you like, the default name is MSComm1.<br /><br />For setting up MSComm1 component..<br /><div class='code_box'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="vb" style="font-family: monospace;"> &nbsp; &nbsp;MSComm1.<span style="color: #66cc66;">CommPort</span> = COM1 &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #808080;">'Define COM port available on PC</span><br />&nbsp; &nbsp; MSComm1.<span style="color: #66cc66;">Settings</span> = <span style="color: #ff0000;">&quot;9600, N, 8, 1&quot;</span> &nbsp; &nbsp; &nbsp;<span style="color: #808080;">'9600 Baudrate, No Parity, 8 bits data, 1 Stopbit.</span><br />&nbsp; &nbsp; MSComm1.<span style="color: #66cc66;">InputLen</span> = <span style="color: #cc66cc;">1</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #808080;">'Read 1 character/byte whenever Input property is used.</span><br />&nbsp; &nbsp; MSComm1.<span style="color: #66cc66;">InputMode</span> = comInputModeBinary &nbsp;<span style="color: #808080;">'Input will retrieve data in array of bytes.</span><br />&nbsp; &nbsp; MSComm1.<span style="color: #66cc66;">PortOpen</span> = <span style="color: #b1b100;">True</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080;">'Open Serial Port COM1.</span></div></div><br /><br />To read from serial port...<br /><div class='code_box'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="vb" style="font-family: monospace;"><span style="color: #b1b100;">If</span> MSComm1.<span style="color: #66cc66;">InBufferCount</span> <span style="color: #b1b100;">Then</span><br />read_value = MSComm1.<span style="color: #b1b100;">Input</span> <span style="color: #808080;">'read_value will have whatever is sent to serial port of PC</span></div></div><br /><br />and to write to serial port..<br /><div class='code_box'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="vb" style="font-family: monospace;">MSComm1.<span style="color: #66cc66;">Output</span> = something_to_send</div></div><br /><br />I hope many things are clear now <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Tue, 22 Jan 2008 10:44:10 -0800</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[.net is tough.. never used it <img src='http://www.8051projects.net/e107_images/emotes/yahoo/10.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Fri, 25 Jan 2008 00:06:55 -0800</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[<br />ok<br />if i want to read the com port only when there is a new data received<br />by using interrupt<br />so how can we do that<br />]]></description>
<author>Ritesh&lt;rjain1982@nospam.com&gt;</author>
<pubDate>Thu, 24 Jan 2008 01:46:39 -0800</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[Ritesh<br />for this u can make use of onComm event.<br />go to properties of mscomm , set RThreshold to 1.<br />then use code<br /> <div class='code_box'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="vb" style="font-family: monospace;"><br /><span style="color: #b1b100;">Private</span> <span style="color: #b1b100;">Sub</span> MSComm1_OnComm<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #b1b100;">If</span> <span style="color: #66cc66;">&#40;</span>MSComm1.<span style="color: #66cc66;">CommEvent</span> = comEvReceive<span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">Then</span> &nbsp;<span style="color: #808080;">' if something received</span><br />&nbsp; &nbsp; &nbsp; &nbsp; Text3.<span style="color: #66cc66;">Text</span> = MSComm1.<span style="color: #b1b100;">Input</span> <span style="color: #808080;">'save it to text3</span><br />&nbsp; &nbsp;<span style="color: #b1b100;">End</span> <span style="color: #b1b100;">If</span><br /><span style="color: #b1b100;">End</span> <span style="color: #b1b100;">Sub</span><br />&nbsp;</div></div> <br />whenever new data is arrived , onComm event will be generated(like interrupt) and that data will be saved to text3.]]></description>
<author>abbas1707&lt;abbas@nospam.com&gt;</author>
<pubDate>Thu, 24 Jan 2008 03:19:58 -0800</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[THANKS<br />ANY NEW IDEA TO SAME <br />BUT FOR DOT NET 2005]]></description>
<author>Ritesh&lt;rjain1982@nospam.com&gt;</author>
<pubDate>Thu, 24 Jan 2008 23:33:09 -0800</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[hi cenadius,<br />visual basic itself is the programming language <img src='http://www.8051projects.net/e107_images/emotes/yahoo/10.gif' alt='' style='vertical-align:middle; border:0' />  .<br />It can be installed as an integral part of Microsoft Visual studio or can be installed seperately. It does not have a freeware or shareware version so u have to buy it from microsoft.]]></description>
<author>pdi33&lt;islurpundalik@nospam.com&gt;</author>
<pubDate>Sat, 28 Jun 2008 06:40:53 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[can i know where to download the visual basic?what is the programming language use in visual basic?]]></description>
<author>cenadius&lt;cenadius@nospam.com&gt;</author>
<pubDate>Sat, 28 Jun 2008 04:47:50 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[check this link for any ideas about finding it otherwise <img src='http://www.8051projects.net/e107_images/emotes/yahoo/3.gif' alt='' style='vertical-align:middle; border:0' />  .<br />http://www.8051projects.net/forum-t10202.html]]></description>
<author>pdi33&lt;islurpundalik@nospam.com&gt;</author>
<pubDate>Sat, 28 Jun 2008 06:43:02 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[Express editions for VB2008 are available for free..]]></description>
<author>sashijoseph&lt;sashijoseph@nospam.com&gt;</author>
<pubDate>Sat, 28 Jun 2008 10:23:24 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[Express editions for VB2008 are available for free.. <a class='bbcode' href='http://www.8051projects.net/out.php?link=http://www.microsoft.com/express/download/' rel='external'  target='_blank'>http://www.microsoft.com/express/download/</a><br />At last MS is offering sth for free.]]></description>
<author>sashijoseph&lt;sashijoseph@nospam.com&gt;</author>
<pubDate>Sat, 28 Jun 2008 10:23:32 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[ok,thanks all,so the programming use in visual basic is c language?]]></description>
<author>cenadius&lt;cenadius@nospam.com&gt;</author>
<pubDate>Sat, 28 Jun 2008 20:22:14 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[Nope... as the name Visual <strong class='bbcode bold'>Basic</strong> suggests it's closer to the Basic programming language.Nothing to do with C.]]></description>
<author>sashijoseph&lt;sashijoseph@nospam.com&gt;</author>
<pubDate>Sun, 29 Jun 2008 21:54:49 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[i bought a buk on VB6, its bu the name <br />Mastering Visual Basic 6 by Evangelos Petroutsos<br /><br />it has nothng abt MScomm...can any one plz let me kno of som gud VB buk for starters like me??<br />i need to make a simple prog tht can read and write from the comm port...<br />i need a gud buk tht can help me in learning VB and control for the MScomm ports too.<br /><br />AJAY ur tutorial is very helpful..ive learned alot from it <img src='http://www.8051projects.net/e107_images/emotes/yahoo/69.gif' alt='' style='vertical-align:middle; border:0' /> <br />but still i need to get extensive knowledge abt VB and its tools like MScomm]]></description>
<author>bacha&lt;saadali855@nospam.com&gt;</author>
<pubDate>Fri, 31 Oct 2008 05:53:51 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[Hi bacha...<br /><br /> Check out this RS link for Visual Basic for Electronics Engineering Applications and has also got complete Source code files.: <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' />  <br /><br /><div class='indent'>http://rapidshare.com/files/33463115/VBEE.rar</div><br /><br /><br /><br /><br /><img src='http://www.8051projects.net/e107_files/public/1225460299_2561_FT5021_513rp23n43l.jpg' class='bbcode' alt='' width='216' height='300'  />]]></description>
<author>SANATH EMBEDDED&lt;sanathmcx@nospam.com&gt;</author>
<pubDate>Fri, 31 Oct 2008 06:38:34 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[[Thread moved to General Help Discussion Forum]]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Sun, 02 Nov 2008 10:00:41 -0800</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
						<item>
						<title>Re: Visual basic interface</title>
<link>http://www.8051projects.net/forum-t5021.html</link>
<description><![CDATA[thnx alot Mr Sanath Embedded.!dance<br />ill go thru this book.i hope it helps me out:D]]></description>
<author>bacha&lt;saadali855@nospam.com&gt;</author>
<pubDate>Sun, 02 Nov 2008 04:21:48 -0800</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t5021.html</guid>
</item>
				</channel>
				</rss>