<?xml version="1.0" encoding="utf-8" ?>
				<!-- generator="e107" -->
				<!-- content type="Forum / topic" -->
				<rdf:RDF xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
				<channel rdf:about="http://www.8051projects.net/">
				<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>
				<dc:language>en-gb</dc:language>
				<dc:date>2008-12-01T23:17:09-08:00</dc:date>
				<dc:creator>contact@nospam.com</dc:creator>
				<admin:generatorAgent rdf:resource="http://e107.org" />
				<admin:errorReportsTo rdf:resource="mailto:contact@nospam.com" />
				<sy:updatePeriod>hourly</sy:updatePeriod>
				<sy:updateFrequency>1</sy:updateFrequency>
				<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
				<items>
				<rdf:Seq>
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t5021.html" />
				</rdf:Seq>
				</items>
				</channel>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator></dc:creator>
						<dc:subject></dc:subject>
						<description>can anyone help me in building an VB interface with coding and tutorials.basically how does the communication between the PC and the microcontroller takes plce through VB interface.</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>Ajay</dc:creator>
						<dc:subject></dc:subject>
						<description>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..  if not we are all here</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>har</dc:creator>
						<dc:subject></dc:subject>
						<description>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:even in this project there is a form. does this form takes part in the interaction between the microcontroller and PC.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.please kindly help</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>Ajay</dc:creator>
						<dc:subject></dc:subject>
						<description>As i said you need to add MSCOMM component in your project..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.For setting up MSComm1 component..CODE: &nbsp; &nbsp;MSComm1.CommPort = COM1 &nbsp; &nbsp; &nbsp; &nbsp;'Define COM port available on PC<br />&nbsp; &nbsp; MSComm1.Settings = "9600, N, 8, 1" &nbsp; &nbsp; &nbsp;'9600 Baudrate, No Parity, 8 bits data, 1 Stopbit.<br />&nbsp; &nbsp; MSComm1.InputLen = 1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'Read 1 character/byte whenever Input property is used.<br />&nbsp; &nbsp; MSComm1.InputMode = comInputModeBinary &nbsp;'Input will retrieve data in array of bytes.<br />&nbsp; &nbsp; MSComm1.PortOpen = True &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'Open Serial Port COM1.To read from serial port...CODE:If MSComm1.InBufferCount Then<br />read_value = MSComm1.Input 'read_value will have whatever is sent to serial port of PCand to write to serial port..CODE:MSComm1.Output = something_to_sendI hope many things are clear now</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>Ajay</dc:creator>
						<dc:subject></dc:subject>
						<description>.net is tough.. never used it</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>Ritesh</dc:creator>
						<dc:subject></dc:subject>
						<description>okif i want to read the com port only when there is a new data receivedby using interruptso how can we do that</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>abbas1707</dc:creator>
						<dc:subject></dc:subject>
						<description>Riteshfor this u can make use of onComm event.go to properties of mscomm , set RThreshold to 1.then use code CODE:<br />Private Sub MSComm1_OnComm&#40;&#41;<br />&nbsp; &nbsp;If &#40;MSComm1.CommEvent = comEvReceive&#41; Then &nbsp;' if something received<br />&nbsp; &nbsp; &nbsp; &nbsp; Text3.Text = MSComm1.Input 'save it to text3<br />&nbsp; &nbsp;End If<br />End Sub<br />&nbsp; whenever new data is arrived , onComm event will be generated(like interrupt) and that data will be saved to text3.</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>Ritesh</dc:creator>
						<dc:subject></dc:subject>
						<description>THANKSANY NEW IDEA TO SAME BUT FOR DOT NET 2005</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>pdi33</dc:creator>
						<dc:subject></dc:subject>
						<description>hi cenadius,visual basic itself is the programming language   .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>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>cenadius</dc:creator>
						<dc:subject></dc:subject>
						<description>can i know where to download the visual basic?what is the programming language use in visual basic?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>pdi33</dc:creator>
						<dc:subject></dc:subject>
						<description>check this link for any ideas about finding it otherwise   .http://www.8051projects.net/forum-t10202.html</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>sashijoseph</dc:creator>
						<dc:subject></dc:subject>
						<description>Express editions for VB2008 are available for free..</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>sashijoseph</dc:creator>
						<dc:subject></dc:subject>
						<description>Express editions for VB2008 are available for free.. http://www.microsoft.com/express/download/At last MS is offering sth for free.</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>cenadius</dc:creator>
						<dc:subject></dc:subject>
						<description>ok,thanks all,so the programming use in visual basic is c language?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>sashijoseph</dc:creator>
						<dc:subject></dc:subject>
						<description>Nope... as the name Visual Basic suggests it's closer to the Basic programming language.Nothing to do with C.</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>bacha</dc:creator>
						<dc:subject></dc:subject>
						<description>i bought a buk on VB6, its bu the name Mastering Visual Basic 6 by Evangelos Petroutsosit has nothng abt MScomm...can any one plz let me kno of som gud VB buk for starters like me??i need to make a simple prog tht can read and write from the comm port...i need a gud buk tht can help me in learning VB and control for the MScomm ports too.AJAY ur tutorial is very helpful..ive learned alot from it  but still i need to get extensive knowledge abt VB and its tools like MScomm</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>SANATH EMBEDDED</dc:creator>
						<dc:subject></dc:subject>
						<description>Hi bacha... Check out this RS link for Visual Basic for Electronics Engineering Applications and has also got complete Source code files.:   http://rapidshare.com/files/33463115/VBEE.rar</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>Ajay</dc:creator>
						<dc:subject></dc:subject>
						<description>[Thread moved to General Help Discussion Forum]</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t5021.html">
						<title>Re: Visual basic interface</title>
						<link>http://www.8051projects.net/forum-t5021.html</link>
						<dc:date>2008-12-01T23:17:09-08:00</dc:date>
						<dc:creator>bacha</dc:creator>
						<dc:subject></dc:subject>
						<description>thnx alot Mr Sanath Embedded.!danceill go thru this book.i hope it helps me out:D</description>
						</item>
				</rdf:RDF>