Nah, I've got some example almost done... 3 projects.
Alright, I've got 3 VB Projects In that zip file. You should look at them in the order of: browser, example, cool.
Basically, the first one is just a browser with no navigation buttons or anything... it just loads up and goes to http://www.daniweb.com . Plain and simple. Goal: understand that VB Apps can have built in web-browsers.
Example, On the other hand, on form load launches an inputbox to get a string from the user. It stores it in a variable. It then makes a variable (called html) that stores a custom google page. (my own personal favorite). It has nothing but a form, a textbox, and a button. Plain and simple. The thing about this one, is that you see in the vb code, that whatever the person types in the inputbox, gets put into the textbox on the web page (by adding it in the HTML before it's written to the file).
Goal: understand that we can write our HTML file, with information from the user, and have that page load up. (you still have to click the submit button on the page for this one)
Cool, now, is the final project. It is basically Example, only it adds some javascript to the page that we write, AFTER the closing FORM Tag, but before the closing HTML Tag. The HTML That We Add, actually submits the page, using javascript with the forms .submit method. So, Essentially, we have a self-submitting web-page, with whatever we want in the form, in the form. Then, our VB app navigates to this self-submitting, pre-filled out web page, which forces it to submit to the server.
Goal: understand that we can make a self-submitting, pre-filled out web page, and have it submitted to the server to yield our specified result.
Understand, however, that this is only being done for google, as a search. So, it's fairly pointless, with the exception of the understanding of the concepts that go along with what we are doing. The Program Runs, Asks the user for something to search at google.... writes a self-submitting, pre-filled out web page to the hard drive, navigates to it.... and display's the result. When the BBChat program is completed.... You wouldn't want to leave the browser control visible. You'd hide someone on the form beyond the edges, and set it's visibility to false.... and then just use your own information from the VB app... well, you know what I mean. I hope this has helped a little bit.... I'm more than happy and willing to help you work on this for your bbchat... but it is important to me that you understand what is going on, so that for future use, in case you need the concept again, you know it. Let me know what you think thus far....