Search the Community
Showing results for tags 'word udf'.
-
Hi all, First, I want to give a huge shout-out to the community. I'm completely self-taught, and have never had to actually ask a question before because the forum is that good at answering questions and explaining things. However, I'm kind of stumped here, and I've been stuck on this problem fo...
-
My computer has been upgraded from Office 2010 to Office 2016. Are there any features of Office 2013 or Office 2016 which you now want to see in the Excel, Word or Outlook UDF?
-
As near as I can ascertain using the Word UDF the paragraph count does not count the numbered paragraphs in a document but counts something like all paragraphs (numbered , un-numbered, indented) minus empty lines. Is there any easy way of getting the first level numbered paragraph numbers? You'll...
-
Good morning everyone I was talking about this UDF in this thread, but for not confusing "arguments", I opened a new thread... So, the issue I'm having, is the format of the table, that you can see in the image above... Can you help me out please? Thanks Text of the previous post:...
- 10 replies
-
- word udf
- word table
-
(and 1 more)
Tagged with:
-
a Shift + Enter line break for Word 2007. is chr(11) #include <word.au3> $sText = 'Test' & @LF & 'Test' & @CR & 'Test' & @CRLF & 'test' & chr(10) & 'test' & chr(13) & 'test' $oWord = _Word_Create() $oDoc = _Word_DocAdd($oWord) $oRange = $oDoc.Range $oRange.InsertAfter ($sText) $iEnd = $oRange.End...