G
Guest
I am working on a project where I am listing 4 catagories and notes attached
to these catagories in a text box. I have the catagories and notes
displaying in the box but I want each one to be on it's own line and I can
not find any referances on how to include the "Enter" keystroke in my code.
This is the current code I am using:
Me![NOTES] = "EQUIPMENT: " & Me.SOLDTOID.Column(8) & " INGREDIENTS: "
& Me.SOLDTOID.Column(9) & " PACKAGING: " & Me.SOLDTOID.Column(10) & "
SUPPLIES: " & Me.SOLDTOID.Column(11)
I want the enter to be between each of the catagories like this:
Me![NOTES] = "EQUIPMENT: " & Me.SOLDTOID.Column(8) & ENTER & "INGREDIENTS:
" & Me.SOLDTOID.Column(9) & ENTER & "PACKAGING: " &
Me.SOLDTOID.Column(10) & ENTER & "SUPPLIES: " & Me.SOLDTOID.Column(11)
I tried this exact code and it didn't work. Any help would be appreciated.
Thank you in advance.
to these catagories in a text box. I have the catagories and notes
displaying in the box but I want each one to be on it's own line and I can
not find any referances on how to include the "Enter" keystroke in my code.
This is the current code I am using:
Me![NOTES] = "EQUIPMENT: " & Me.SOLDTOID.Column(8) & " INGREDIENTS: "
& Me.SOLDTOID.Column(9) & " PACKAGING: " & Me.SOLDTOID.Column(10) & "
SUPPLIES: " & Me.SOLDTOID.Column(11)
I want the enter to be between each of the catagories like this:
Me![NOTES] = "EQUIPMENT: " & Me.SOLDTOID.Column(8) & ENTER & "INGREDIENTS:
" & Me.SOLDTOID.Column(9) & ENTER & "PACKAGING: " &
Me.SOLDTOID.Column(10) & ENTER & "SUPPLIES: " & Me.SOLDTOID.Column(11)
I tried this exact code and it didn't work. Any help would be appreciated.
Thank you in advance.