• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Help with placing text in textbox

Joe Mazzone

New Member
hello,
I have a form for entry, all the entry fields of the comboboxes work. All the chosen information is saved in a sheet called TRANSPORTATION FIELD.
1713960328368.png
what I need please. is that textbox1 looks like this:
1713960418585.png
Is it possible to do this?
Thank you very much in advance.
 

Attachments

  • TRANSPORT REQUEST1.xlsm
    21.3 KB · Views: 2
Hello, according to your attachment just try :​
Code:
    TextBox1.Text = ComboBox1.Text & vbLf & "I need to request a field for the bus output " & CBHORASALIDA.Text & vbLf & _
                    "My current schedule is " & CBTIME.Text & " - " & CBHORASALIDA.Text & vbLf & "ROUTE FROM : " & _
                    ComboBox2.Text & vbLf & "Therefore, I need space for the bus for employees who leave at " & _
                    CBHORASALIDA.Text & vbLf & "Thanks in advance."
Do you like it ? So thanks to click on bottom right Like !
 
Back
Top