I need Help with Visual Basic Express Edition Convert text to command or Html.?

anthony

New member
I need to know how to Specifically convert Regular Text to Either Console(Command Prompt) or HTML in Visual Basic Express Edition
For more information, I have a form window up with two horizontal aligned text boxes. Top Box Type Command like Echo test run, and the bottom should display test run. Like that
 
That doesn't make much sense.

VB express can create a console application with no windows. It should be an option in the new projects templates. Most MS documentation includes the statments to print to the console. retrieving command-line argumnets and getting input is as available.

HTML is basically just regular text. only foriegn characters need HTML encoding. Just make sure to include the html tags to encapsualte the text you want users to see.

Ex instead of print just
hello world!
print
<html><head></head><body>Hello World!</body>

A hint. if you need quote marks " then
dim vbQuote as string=chr(34)

vbQuote & "Hello World!" & vbQuote would then print
"Hello World!"
 
Back
Top