Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() OK heres my problem. I have a MultiLine TxtBox on the Form, and when I enter in the box and press return rather then keep typeing it send a Box to the cell after I entered the info. For example Text box __________________________ | this is a test {RETURN}| | | | | | | __________________________ The Sheet then returns the following to the cell: this is a test [] Any information would help *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Maybe you could clean it up before you update the cell:
Option Explicit Private Sub CommandButton1_Click() Dim myStr As String myStr = Me.TextBox1.Value myStr = Application.Substitute(myStr, vbNewLine, vbLf) ActiveSheet.Range("a1").Value = myStr End Sub Cory Not Available wrote: OK heres my problem. I have a MultiLine TxtBox on the Form, and when I enter in the box and press return rather then keep typeing it send a Box to the cell after I entered the info. For example Text box __________________________ | this is a test {RETURN}| | | | | | | __________________________ The Sheet then returns the following to the cell: this is a test [] Any information would help *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it! -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Drop down that returns to the last selection and can be formated. | Excel Discussion (Misc queries) | |||
Fixing multiline cell | Excel Worksheet Functions | |||
divide multiline text cell across several rows | Excel Programming | |||
MultiLine/WordWrap usage | Excel Programming | |||
embed <alt<enter for multiline cell in a CSV file | Excel Programming |