M
Mr. T.
Hi,
i've got a word document with a numbered list that i'm filling up from
within my access code. So far, no problem.
Now in a numbered list (or a bulleted list for that matter) in word, if you
press the enter key, you get a new list item (a new number or bullet). If
you want the new line to resort under the same number, you type SHIFT+ENTER
and that's it.
Now my question is how i can pass that through by VBA code? If i send VbCrLf
or VbCr or VbLf or chr(10) or chr(13) my text allways get put as a new item
in the list. Basically what i'm getting is
1. text
2. text
3. text
4. text
etc...
when what i really want is
1. text
text
2. text
3. text
text
etc...
So my (simple?) question is: what do i need to send as code after my line so
that it doesn't start a new item in the list?
Regards & thx in advance for your replies!
Thomas
i've got a word document with a numbered list that i'm filling up from
within my access code. So far, no problem.
Now in a numbered list (or a bulleted list for that matter) in word, if you
press the enter key, you get a new list item (a new number or bullet). If
you want the new line to resort under the same number, you type SHIFT+ENTER
and that's it.
Now my question is how i can pass that through by VBA code? If i send VbCrLf
or VbCr or VbLf or chr(10) or chr(13) my text allways get put as a new item
in the list. Basically what i'm getting is
1. text
2. text
3. text
4. text
etc...
when what i really want is
1. text
text
2. text
3. text
text
etc...
So my (simple?) question is: what do i need to send as code after my line so
that it doesn't start a new item in the list?
Regards & thx in advance for your replies!
Thomas