Search:

Type: Posts; User: vb6s

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Re: vb6: textfilter based on duplicate words in two textboxes

    never mind
    i already hired coder who did it with 10 lines of code
  2. Re: vb6: textfilter based on duplicate words in two textboxes

    i posted it in english!
    it is clear, anyone can read it
    just say u dont wana help and move on
  3. Re: vb6: textfilter based on duplicate words in two textboxes

    guys plz help
    i posted project 2 days ago still not a single reply :(
  4. [RESOLVED] vb6: textfilter based on duplicate words in two textboxes

    xxxxxxxxxxxxxxxxxxxxx
  5. Re: Vb6: read richtextbox line by line; out of string space

    something like this but i get error out of string space

    Dim arrLines() As String
    arrLines = Split(RichTextBox1.Text, vbCrLf)
    Text1.Text = arrLines(0)


    RichTextBox1.Text =...
  6. Re: Vb6: read richtextbox line by line; out of string space

    how is it possible to run it until richtextbox becomes emtpy ?
  7. Re: Vb6: read richtextbox line by line; out of string space

    If RichTextBox1.Text = "" = False Then
    Call Command1_Click
    End If

    still showed me run time error 7 out of memory :(
  8. Re: Vb6: read richtextbox line by line; out of string space

    it is what i need to do
    it has to run this code with all lines in richtextbox
  9. Vb6: read richtextbox line by line; out of string space

    i manually add to richtextbox1 over 5k in lines, and my goal is to read each line from richtextbox to text1
    then move to next and remove previous line
    however im gettting out of string space 14...
  10. Replies
    2
    Views
    669

    Re: Vb6: run-time error out of memory

    my bad i will open another thread where i explain better what i need
  11. Replies
    2
    Views
    669

    [RESOLVED] Vb6: run-time error out of memory

    i would like to move to next line in a richtextbox each time i click on button and show that line into textbox1
    however, im doing that in auto mode with more than 10 thousands line and tool keeps...
  12. Re: vb6: save big data from textbox to txt file

    thx so much i found this code and it works instantly without any delay

    'Start append text to file

    FileNum = FreeFile
    Open App.Path & "\result.txt" For Append As FileNum
    Print...
  13. Re: vb6: save big data from textbox to txt file

    can u plz help me with code ?
    bcoz i dont know how to do it
  14. Re: vb6: save big data from textbox to txt file

    u were right problem was bcoz of loop
    i tested ur code, it works
    but i counted how long it takes to save. 3 seconds
    wish if could be faster...
  15. [RESOLVED] vb6: save big data from textbox to txt file

    i have this code and it saves data from textbox to a text file
    problem is it first open txt file and then write data
    however when text file reaches +1mb, it slows down terribly
    plz help me fix...
  16. Re: vb6; add new text to multiline textbox

    actually it worked
    Text1.Text = Text1.Text & vbNewLine & "newlinetext"

    plz close thread
  17. [RESOLVED] vb6; add new text to multiline textbox

    i would like to add new text to existing text in multiline textbox
    already tried this code, but data i have is too much, so it give me error

    Text1.Text = Text1.Text & vbNewLine & "newlinetext"...
  18. Replies
    12
    Views
    1,558

    Re: vb6: textbox remove space at end

    actually it works
    thx so much for help
  19. Replies
    12
    Views
    1,558

    Re: vb6: textbox remove space at end

    Private Sub Text1_Change()
    text1.text = RTrim$(Text1.Text)
    End Sub
    works only on copy paste, but when i type not working
  20. Replies
    12
    Views
    1,558

    Re: vb6: textbox remove space at end

    i have found this code it works but not so happy with it\
    if someone can suggest a better code i would be happy


    Dim sText As String
    ' assumption is that a string won't have the backspace...
  21. Replies
    12
    Views
    1,558

    Re: vb6: textbox remove space at end

    i checked over all forums, cant find what i need.
    plz help me with code
  22. Replies
    12
    Views
    1,558

    [RESOLVED] vb6: textbox remove space at end

    i have this text:

    david adams
    i need to remove space at end and keep space in middle
    so result would be

    david adams
    plz help
  23. Replies
    34
    Views
    3,669

    Re: Vb6: split text error out of memory

    Text3.Text = ""


    If Text3.Tag = "" Then
    Text3.Text = ""
    Text3.Tag = RichTextBox1.Text + vbCrLf
    End If
    If Text3.Tag <> "" Then
    Text3.Text =...
  24. Replies
    34
    Views
    3,669

    Re: Vb6: split text error out of memory

    yea i used richtextbox
  25. Replies
    34
    Views
    3,669

    Re: Vb6: split text error out of memory

    i need this all within command1, i cant press manualy on another command


    Option Explicit
    Dim MyPos As Long
    Dim LnStr As Long
    Dim Fstring As String
    Dim NStr As String

    Private Sub...
  26. Replies
    34
    Views
    3,669

    Re: Vb6: split text error out of memory

    everytime i click button, it should move to next line
  27. Replies
    34
    Views
    3,669

    Re: Vb6: split text error out of memory

    can you plz help me out with code
    bcoz i duno how to get it done
  28. Replies
    34
    Views
    3,669

    Vb6: split text error out of memory

    i have large data i need to parse from textbox, over 5000 lines but i get error run time 7, out of memory
    the goal is to get first line of text1 to text2 on button click
    here my code, plz help

    ...
  29. Replies
    20
    Views
    1,866

    Re: Vb6: richtextbox read line by line on click

    i already posted code 2 days ago but still no one help :(
  30. Replies
    20
    Views
    1,866

    Re: Vb6: richtextbox read line by line on click

    i have two multiline richboxes,

    richtextbox1:
    david|qwefasdfds jones
    tonys|xzcxz rockfeler
    adams|wxvefwefewcx diny

    richtextbox2:
    david
    tonys
  31. Replies
    20
    Views
    1,866

    Re: Vb6: richtextbox read line by line on click

    here my code. plz help me improve it, bcoz i works with 100-1000 lines maximum then it stops


    Private Sub Command1_Click()
    On Error Resume Next

    Dim arr() As String
    Static i As...
  32. Replies
    20
    Views
    1,866

    Re: Vb6: richtextbox read line by line on click

    it works but i still have other problem
  33. Replies
    20
    Views
    1,866

    Re: Vb6: richtextbox read line by line on click

    i have two multiline richboxes,

    richtextbox1:
    david qwefasdfds jones
    tonys xzcxz rockfeler
    adams wxvefwefewcx diny

    richtextbox2:
    david
    tonys
  34. Replies
    20
    Views
    1,866

    Re: Vb6: richtextbox read line by line on click

    Dim arr() As String
    Dim i As Integer
    arr = Split(RichTextBox1.Text, vbCrLf)
    For i = 0 To UBound(arr)
    Text1.Text = arr(i)
    Next
  35. Replies
    20
    Views
    1,866

    Re: Vb6: richtextbox read line by line on click

    this is get all lines together to text1
    i need to get lines one by one on each click
  36. Replies
    20
    Views
    1,866

    Re: Vb6: richtextbox read line by line on click

    because this is actual project;
    i have two multiline richboxes,

    richtextbox1:
    david qwefasdfds jones
    tonys xzcxz rockfeler
    adams wxvefwefewcx diny

    richtextbox2:
    david
  37. Replies
    20
    Views
    1,866

    Vb6: richtextbox read line by line on click

    i need to read all lines from richtextbox to text1.text when i click command1 one by one
    i have used this code, it works for msgbox, but for text1.txt not working, plz help

    Private Sub...
  38. Replies
    12
    Views
    2,198

    Re: Vb6: Xmlhttp async

    tell me one thing; u said it is against first site terms and didnt help
    how about second website? why you didnt help me with second website? is it also against their terms?
    it is clear to me that...
  39. Replies
    12
    Views
    2,198

    Re: Vb6: Xmlhttp async

    what is wrong everyone here? i just asked for help with code
    now everyone turned into a lawyer of internet or what ??
    why cant someone just help with code ??
    first member said website terms not...
  40. Replies
    12
    Views
    2,198

    Re: Vb6: Xmlhttp async

    execuse me but who are u ?
    what i said is to him not to u.
    if u going to help then help with fixing my code or plz leave my thread.
    plz dont teach me how to behave
Results 1 to 40 of 54
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width