tabarra Posted May 17, 2008 at 10:00 PM Report Share #185730 Posted May 17, 2008 at 10:00 PM então, eu estou tentando carregar o conteúdo de uma textbox multiline para dentro de uma listbox se fosse de um arquivo o comando seria: Dim MyString As String On Error Resume Next Open Directory$ For Input As #1 While Not EOF(1) Input #1, MyString$ DoEvents TheList.AddItem MyString$ Wend Close #1 como ficaria o comandoo para por tudo que está no text3.text dentro da list2 ? agradecido (com urgência por favor) Link to comment Share on other sites More sharing options...
jpaulino Posted May 17, 2008 at 10:04 PM Report Share #185731 Posted May 17, 2008 at 10:04 PM Podes fazer assim: Dim str() As String Dim x As Integer str = Split(Me.Text1.Text, vbNewLine) For x = 0 To UBound(str) Me.List1.AddItem str(x) Next x Link to comment Share on other sites More sharing options...
jpaulino Posted May 17, 2008 at 10:05 PM Report Share #185732 Posted May 17, 2008 at 10:05 PM Mais urgente que isto não sei :-) Link to comment Share on other sites More sharing options...
tabarra Posted May 17, 2008 at 10:09 PM Author Report Share #185734 Posted May 17, 2008 at 10:09 PM uiaaa !!!!!!! salve! omg super rápido e salvou minha vida! obrigado, funcionou perfeitamente Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now