Recent content by eDIN

  1. E

    How to Split MultiLine TextBox into a ListBox

    Hello vbaInet Here is a VeryVery stripped version of myDB Thank's for You Efforts. eDIN
  2. E

    How to Split MultiLine TextBox into a ListBox

    Yes, of course. I'll do it tomorrowEvening. Actually, I'm on a shorTrip. Best Regards.
  3. E

    How to Split MultiLine TextBox into a ListBox

    NansCombe, Thanks, but... - it doesn't work (on myComp). I'm eager to know - Why? :confused:
  4. E

    How to Split MultiLine TextBox into a ListBox

    LagBolt, You are a Realy Maestro - It Works. I will visit Your Site. Thanks ! PS Could You meaby explain - why did my previously attemptings not working. Where is Mistake. It's a Clear Code - isn't it ? AnyWay - AnyCase - ThanksAgain.
  5. E

    How to Split MultiLine TextBox into a ListBox

    EveryThing Checked but - No Result. Any More Idea, Please. Thanks for Your Effort.
  6. E

    How to Split MultiLine TextBox into a ListBox

    I was trying several times, but nothing happend. Here is one of my try: Dim i As Long Dim a() As String a = Split(txNm.Text, vbCrLf) For i = LBound(a) To UBound(a) LbNm.AddItem a(i) Next What's happend - ListBox received focus - and that's All. Could You write the code, please. thanks.
  7. E

    How to Split MultiLine TextBox into a ListBox

    In My Table there is a Memo Field. It's representing (on Form) by a MultuLine textBox I want get the lines of that TextBox into a ListBox (on the same Form). Like in Excel: Dim v As Variant v = Split(Range("A1").Value, vbLf) ListBox1.List = v What is the Way? Thanks in Advance.
Back
Top Bottom