We need you!

We're working hard on the next version of Developer Fusion. Let us know what you think we should be up to!

Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

[4722] Show/Hide Desktop Icons

Last post 11-28-2005 11:25 AM by baludoubts. 2 replies.
Page 1 of 1 (3 items)
Sort Posts: Previous Next
  • 01-01-1999 12:00 AM

    [4722] Show/Hide Desktop Icons

    This thread is for discussions of Show/Hide Desktop Icons.

    • Post Points: 0
  • 11-24-2005 6:38 AM In reply to

    • vsnlth
    • Not Ranked
    • Joined on 11-24-2005
    • New Member
    • Points 35

    about multiline textbox

    Hi
    How to get each line from the multiline textbox in vb.net
    • Post Points: 0
  • 11-28-2005 11:25 AM In reply to

    Multiline textbox

    This is the code in C#:

    for(int i =0;i<textBox1.Lines.Length;i++)
    {
    MessageBox.Show(textBox1.Lines.ToString());
    }

    The logic is,

    the textbox,internally consists of an array called Lines that constitutes each line in the multiline textbox.

    ll help u.GOODLUCK
    • Post Points: 0
Page 1 of 1 (3 items)