Click to See Complete Forum and Search --> : inputBox


Remi_CG
November 1st, 1999, 10:34 AM
How can you use the inputbox to make multiple line input. I want to be able to keep entering lines until i push ok. if i hit return that will be the next line.
Well really that's not necessary i just wnt to enter multiple lines in the input box instead of one line!!!!!!!!!!!

Chris Eastwood
November 1st, 1999, 04:08 PM
Try setting the 'MultiLine' property of the textbox to 'True'


Chris Eastwood

CodeGuru - the website for developers
http://codeguru.developer.com/vb

BrewGuru99
November 2nd, 1999, 03:12 PM
The inputbox function does not support multiple lines. You will have to create your own form to mimic the inputbox. It is possible to treat a form like a function, so you won't have to drastically modify your code.

Brewguru99