Nonbreaking Hyphens

A

Al Campagna

Grace,
Is this a Microsoft Access question? Not sure what you mean by
"non-breaking". Sounds like a Word thing...

Anyhoo... given some string, a hyphen can be inserted into that string.
As far as I know it would just be considered like any other character, and
would have no other effect on the string.
A simple example
Given a field named MyText and a value of "ABCDEF"...

= Left(MyText,3) & "-" & Mid(MyText,4)

Would yield "ABC-DEF"
--
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html

"Find a job that you love... and you'll never work a day in your life."
 
G

Grace

This is actually a Access 2007 question. I have a field which is a text
field within a table. This text field is used in a Report. Sometimes there
are hyphenated words within this field (i.e. on-site). When the report is
printed, it looks weird to have on- on one line and site on the line below it
depending where these words are in the memo field.
 
A

Al Campagna

Grace,
OK... I haven't spent much time with 2007, so they may have changed the
text handling.
It just seems as though all the older versions of Access just used the
nearest "space"... as to where to "break".
If "on-site" stays together everywhere but close to the right margin,
you may have to live with the occasional odd break.

Some one may pipe in on this thread, but if not, please feel free to
start a new post.
Sorry to not be of more help.
--
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html

"Find a job that you love... and you'll never work a day in your life."
 
A

Allen Browne

In a Rich Text Box in Access 2007, you can use HTML characters such as
  for a non-breaking space. But A2007 does not seem to treat it
correctly. It displays correctly as a space, but does not respect the
non-breaking part (i.e. the words do break at that point at the end of a
line.)

Similarly, – does not give a non-breaking hyphen. Not sure what to
suggest.
 
Joined
Jul 2, 2013
Messages
1
Reaction score
0
Yes it is possible to put non-breaking hyphens into Access textbox text. Put the cursor at the spot. Hold down the ALT key and type 0150. Release the ALT key and the hyphen will appear. You can get non-breaking spaces by ALT and 0160.
 
Joined
Nov 5, 2014
Messages
2
Reaction score
0
Yes it is possible to put non-breaking hyphens into Access textbox text. Put the cursor at the spot. Hold down the ALT key and type 0150. Release the ALT key and the hyphen will appear. You can get non-breaking spaces by ALT and 0160.

Thanks for this, Bruce. :thumb:

I am not sure why Allen Browne :bow: was not aware of that, :confused: but it was a while ago that he responded to the original question. A general question that somebody might know/care about - what version of Access program and/or Access database is needed for this to work? (I know it does in Access 2010)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top