Hi all,
In Microsoft word, for Kurdish letters, you can length the letters as shown below using shift + J
how to do this automatically?
from the undo button it appears that to extend the letters it uses typing ______
letter lengething in Ms Word
-
- 5StarLounger
- Posts: 1166
- Joined: 01 May 2016, 09:58
letter lengething in Ms Word
You do not have the required permissions to view the files attached to this post.
-
- 4StarLounger
- Posts: 570
- Joined: 10 Jan 2016, 15:56
- Location: Madison, Wisconsin
Re: letter lengething in Ms Word
I believe this is a function of right-to-left language settings.
See my page on alignment/justification.
https://www.addbalance.com/usersguide/justification.htm
The keyboard command, at least on my system, is Ctrl+Shift+J and this is called fully distributed text.
Any chance you have your text underlined?
See my page on alignment/justification.
https://www.addbalance.com/usersguide/justification.htm
The keyboard command, at least on my system, is Ctrl+Shift+J and this is called fully distributed text.
Any chance you have your text underlined?

Templates in Microsoft Word
Modifying the QAT
The Importance of Styles in Microsoft Word
-
- 4StarLounger
- Posts: 570
- Joined: 10 Jan 2016, 15:56
- Location: Madison, Wisconsin
Re: letter lengething in Ms Word
Looking at your sample document, it is not the distributed text.
I can produce something similar using that feature and a space between each character. Here is a temporary link to the document with this in it.
https://www.dropbox.com/s/skqbr1gry6f2n ... .docx?dl=0
There is a single space between each character that is underlined.
This could also be a tab. http://wordfaqs.ssbarnhill.com/SettingTabs.htm
I can produce something similar using that feature and a space between each character. Here is a temporary link to the document with this in it.
https://www.dropbox.com/s/skqbr1gry6f2n ... .docx?dl=0
There is a single space between each character that is underlined.
This could also be a tab. http://wordfaqs.ssbarnhill.com/SettingTabs.htm
You do not have the required permissions to view the files attached to this post.

Templates in Microsoft Word
Modifying the QAT
The Importance of Styles in Microsoft Word
-
- 5StarLounger
- Posts: 1166
- Joined: 01 May 2016, 09:58
Re: letter lengething in Ms Word
thank you for the reply and the useful link, what we want is to after each pressing enter to distribute the words to fit one line automatically
-
- 4StarLounger
- Posts: 570
- Joined: 10 Jan 2016, 15:56
- Location: Madison, Wisconsin
Re: letter lengething in Ms Word
That is the distributed text with a space between each character.

Templates in Microsoft Word
Modifying the QAT
The Importance of Styles in Microsoft Word
-
- 5StarLounger
- Posts: 1166
- Joined: 01 May 2016, 09:58
Re: letter lengething in Ms Word
they did it with text justification!! but i dont know how!
-
- 4StarLounger
- Posts: 440
- Joined: 14 Nov 2012, 16:06
Re: letter lengething in Ms Word
Is this what you want ?
You do not have the required permissions to view the files attached to this post.
-
- 4StarLounger
- Posts: 440
- Joined: 14 Nov 2012, 16:06
Re: letter lengething in Ms Word
Otherwise to illustrate how it can be done:
Code: Select all
Sub M_snb()
For j = 2 To 20 Step 4
Paragraphs(1).TabStops.Add CentimetersToPoints(j), 0, 3
Next
Paragraphs(1).Range.Text = Join(Split("a b c d e f "), vbTab)
Paragraphs(1).Range.Font.Bold = True
End Sub