Login Register






How do i add text in a box? vb filter_list
Author
Message
RE: How do i add text in a box? vb #11
(09-16-2014, 02:47 PM)bcoppell Wrote:
(09-01-2014, 08:26 AM)ArkPhaze Wrote:
(08-25-2014, 01:05 PM)bcoppell Wrote: That depends on whether you are referring to VBS text box's or DOS.
Send me a private message with clarification and I'll be more than happy to help out.

lol DOS has a TextBox and Button controls, since when?... I really don't get what you're trying to hint at here.

You can do that like this:
Code:
textBox1.Lines = new[] { "hello", "my", "name", "is", "eddie" };

Edit: VB.net
Code:
TextBox1.Lines = {"hello", "my", "name", "is", "eddie"}



Here, this is a DOS command that displays a small, very basic text box:

Msg * "your text"

You don't even understand what a textbox is... That would be a message box. And that's not DOS just because it invokes a window to pop up, that's the program msg.exe...
ArkPhaze
"Object oriented way to get rich? Inheritance"
Getting Started: C/C++ | Common Mistakes
[ Assembly / C++ / .NET / Haskell / J Programmer ]

Reply