CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: inputBox

  1. #1
    Join Date
    Oct 1999
    Posts
    10

    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!!!!!!!!!!!


  2. #2
    Join Date
    May 1999
    Location
    Oxford UK
    Posts
    1,459

    Re: inputBox

    Try setting the 'MultiLine' property of the textbox to 'True'


    Chris Eastwood

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

  3. #3
    Join Date
    Oct 1999
    Location
    CA
    Posts
    91

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured