Privé SubDocControlAdd ()
'Schemerige texta, textb, textc, textd, texte, textf als Koord 'dit verduistert allen behalve de laatste variabele als variant
Schemerige texta als Koord, textb als Koord, textc als Koord, textd als Koord, texte als Koord, textf als Koord
Schemerige tbl als Lijst
Schemerige rw als Rij
Schemerig cl als Cel
Schemerig c als Geheel
Schemerige iStartCol als Geheel
texta = ActiveDocument.CustomDocumentProperties.Item („xRevisionNo“)
textb = ActiveDocument.CustomDocumentProperties.Item („xRevisionDate“)
textc = ActiveDocument.CustomDocumentProperties.Item („xDetails“)
textd = ActiveDocument.CustomDocumentProperties.Item („xPreparedby“)
texte = ActiveDocument.CustomDocumentProperties.Item („xReviewedby“)
textf = ActiveDocument.CustomDocumentProperties.Item („xApprovedby“)
iStartCol = 1
Reeks tbl = ActiveDocument.Tables (1)
Als ActiveDocument.CustomDocumentProperties.Item („xNew“) = „Y“ toen
Vastgesteld rw = tbl. Rows.Add
ElseIf NewVersion = Waar toen
Vastgesteld rw = tbl. Rows.Add
ElseIf NewVersion = Vals toen
tbl. Kolommen (iStartCol). Selecteer
Met Selection.Find
.ClearFormatting
.MatchWholeWord = Waar
.MatchCase = Waar
Als. Voer uit (FindText: =texta) toen
Vastgesteld cl = Selection.Cells (1)
Vastgesteld rw = tbl. Rijen (cl.RowIndex)
Eind als
Eind met
Eind als
c = iStartCol
rw. Cellen (c). Range.Text = texta
c = c + 1
rw. Cellen (c). Range.Text = textb
c = c + 1
rw. Cellen (c). Range.Text = textc
c = c + 1
rw. Cellen (c). Range.Text = textd
c = c + 1
rw. Cellen (c). Range.Text = texte
c = c + 1
rw. Cellen (c). Range.Text = textf
ActiveDocument.CustomDocumentProperties.Item („xRevisionNoOld“). Waarde = ActiveDocument.CustomDocumentProperties.Item („xRevisionNo“). Waarde
Sub van het eind
|