Looks like we posted at the same time. Please try my code. If it does not work, post all of your code here, and use code tags for readability.
Private Sub CommandButton207_Click()
TextBox57.Paste
Application.Wait (Now + TimeValue("0:00:01"))
Dim ws As Variant
Set ws = Worksheets("Models")
ws = Split(ws.Range("K70"), " ")
TextBox58 = ws(0) & ", " & ws(1)
TextBox59 = ws(UBound(ws) - 3) & " " & ws(UBound(ws) - 2) & " " & ws(UBound(ws) - 1)
Application.Wait (Now + TimeValue("0:00:01"))
TextBox58.SelStart = 0
TextBox58.SelLength = TextBox58.TextLength
TextBox58.Cut
TextBox2.SetFocus
TextBox2.SelStart = 0
TextBox2.Paste
TextBox58.SelStart = 0
TextBox59.SelStart = 0
TextBox59.SelLength = TextBox59.TextLength
TextBox59.Cut
TextBox3.SetFocus
TextBox3.SelStart = 0
TextBox3.Paste
TextBox59.SelStart = 0
End Sub
I paste copyed text directly with CommandButton207 into TextBox57 and i need to pause operation 1 sec to do this right if is no there pause data will not show correctly then after paste data goes to Worksheets("Models") to cell K70, then after that data is splited in to two parts.... first part goes to TextBox58 and second part goes to TextBox59, after that i have other part of program who dealing with splited data but that is no prob from that part everything goes smoooth.
I tweek little bit but i have other problems, when is no data in TextBox57 i got error >>"Run-time error '9' Subscript out of range"<< and i dont know how to fix this, and is there a way to sellect only text not number if i have some in line, numbers and slash shoving only on the end of sentence, in some situation i have like in this example i will demonstrate : Platinum_333 and without underscore Platinum 648/22 , i have prob when is the end with just numbers and slash . Tnx in advance