How to obtain DWG file from OLE object?
5 Jun 2006 03:31:04 -0700
Hello All,
I am writing a console based application using C# in which I want to
implement a feature which could extract OLE objects from Word documents
and then save it in DWG file format. The OLE objects exist in Word
documents are in the form of AutoCAD Drawing i.e. once I double clicked
the Object; the s ...
|
SaveAs Xml loses protection information
Wed, 31 May 2006 04:28:01 -0700
I have a document I'm showing in a dsoFramer within a C# application. I
choose "Tools | Protect Document" from the menu, and mark the document as
read-only. I also have a section that Everyone is allowed to edit.
I call SaveAs(filename, wdFormatXML, missing...). When I reload the file,
the entire document ...
|
Word 2007 - Docs to Go will not sync
Sat, 27 May 2006 11:31:50 -0500
Documents to Go (DTG) synchs Office documents with the Palm; I have a
Tungsten T3 and Documents to Go 8.003.
I've gone back & forth woth DataViz about this, but they have no
suggestions. I did a concurrent install of Office 2007 with Office 2003
(working fine) because I thought this might be a problem; h ...
|
Sharepoint List as a Merge Database source in Word 2003
Thu, 25 May 2006 14:06:02 -0700
Is there a way to use a Sharepoint List as a Merge Database source in Word
2003(without having to use Excel or Access as a "middle step"?)
...
|
Word 2003 Dlls (English Version) and Word 2003 Dlls (German Versio
Sun, 21 May 2006 20:24:01 -0700
Hi,
I have created a Word Style Extractor to extract formatting styles
from Word document. This application is created using VS 2002 (English
version) with C# and used the Microsoft Office 11.0 Object Library
(office.dll
English version) through interop.
If the application compiled with ...
|
DDE 'appname' for Word?
Sun, 14 May 2006 05:53:56 -0400
In a program I'm writing, I establish MS Word as the DDE Server. In the
command that opens a DDE channel, I use 'WINWORD' as the appname. It
works fine on all of our servers but one, where the program hangs on
that command. I wonder if someone can tell me what exactly Windows does
with this string in or ...
|
Changing paragraph formatting
Thu, 4 May 2006 15:04:48 -0500
I would like to set the spacing before and after to 0 pt. I tried:
Selection.WholeStory
With Selection.ParagraphFormat
.SpaceBefore = 0
.SpaceAfter = 0
.LineUnitAfter = 0
End With
but it didn't work. What's the right way?
Thanks,
Drew
...
|
|
|
Centering text in table cell
Thu, 4 May 2006 15:02:39 -0500
I'm trying to center some text in the first cell of a table. The table
originally had
5 columns but I merged the first row into 1 column and put 3 lines of text
in it
that I want to be centered. I tried:
tabl.Cell(1, 1).Select
Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
but it ...
|
Getting out of a table
Thu, 4 May 2006 08:14:02 -0700
Got this from some example code but it doesn't seem to work:
Function CreateSpaceAfterTable(ByRef tbl As Word.Table) As Word.Range
Dim rng As Word.Range
' Move the range outside the table.
Set rng = tbl.Range
rng.Collapse Direction:=wdCollapseEnd
rng.InsertParagraph
rng.Collapse Di ...
|
Problems with table
Wed, 3 May 2006 15:02:02 -0700
I've created a table and would like to merge all the cells in the first row.
Code:
tabl.Range.Cells(1).Select
tabl.Range.rows(1).Select
Selection.Cells.Merge ' Fails on this line
The error I get is:
"The requested member of the collection does not exist"
What is this referring to?
Thanks ...
|