-
inputBox
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!!!!!!!!!!!
-
Re: inputBox
Try setting the 'MultiLine' property of the textbox to 'True'
Chris Eastwood
CodeGuru - the website for developers
http://codeguru.developer.com/vb
-
Re: inputBox
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