Problemer med MS Word
Jeg er ved at lave et program til håndtering af skabeloner. De færdige skabeloner skal så åbnes i Word ved at sætte tekstbokse ind i et tomt dokument.--------------------------------------------------------
Dim MyWordObject As Word.Application
Set MyWordObject = New Word.Application
Dim MyWordDocument As Word.Document
Dim MyShape As Word.Shape
With MyWordObject
TMP_Bredde = .CentimetersToPoints(10) 'cm --> Points
TMP_hoejde = .CentimetersToPoints(5) 'cm --> Points
TMP_Xpos = .CentimetersToPoints(5) 'cm --> Points
TMP_Ypos = .CentimetersToPoints(5) 'cm --> Points
.Visible = False
Set MyWordDocument = .Documents.Add(App.Path & "\std_skabelon.dot")
Call MyWordDocument.Activate
Set MyShape = MyWordDocument.Shapes.AddTextbox(msoTextOrientationHorizontal, TMP_Xpos, TMP_Ypos, TMP_Bredde, TMP_hoejde)
Call MyShape.Select
Call MyShape.TextFrame.TextRange.Select
Call Selection.Collapse
Selection.ParagraphFormat.Alignment = wdAlignParagraphLeft
Selection.TypeText Text:="Casper Quitzau" & vbCrLf & "Bredstedgade 7, 1.th" & vbCrLf & "5000 Odense"
Selection.ShapeRange.Fill.Visible = msoFalse
Selection.ShapeRange.Line.Visible = msoFalse
'Selection.ShapeRange.WrapFormat.AllowOverlap = True
Selection.Font.Size = 12
.Visible = True
End With
--------------------------------------------------------
Første gang koden køres lykkedes det, men anden gang kommer denne fejl: http://www.seeque.dk/test/vbfejl.jpg
HASTER !!!
Mvh
SeeQue