Console.write

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mornejooste1
    New Member
    • Aug 2010
    • 1

    Console.write

    Hi how can I get the following code to go into a listbox instead of being written into the console.
    Thanks

    CODE:

    Console.WriteLi ne( _
    "{0} | {1} | {2} | {3}", _
    message.UniqueI d, _
    message.From, _
    message.To, _
    message.Subject )
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    What type of application are you working with?
    Desktop, ASP.NET, console?

    If it's an ASP.NET application check out this MSDN documentation on the ListBox Web Server Control.

    If it's a desktop application, check out this MSDN article on the ListBox control.

    -Frinny

    Comment

    Working...