One last question please.
Bold this part of the only:
Code:
CaptionLabels.Add Name:="Fotografía nº"
For i = 1 To .SelectedItems.Count Step NumCols
r = ((i - 1) / NumCols + 1) * 3 - 2
'Formato de filas
Call FormatRows(oTbl, r, RwHght)
For c = 1 To NumCols
j = j + 1
'Inserta la foto
Set iShp = ActiveDocument.InlineShapes.AddPicture( _
FileName:=.SelectedItems(j), LinkToFile:=False, _
SaveWithDocument:=True, Range:=oTbl.Cell(r, c).Range)
With iShp
.LockAspectRatio = True
If (.Width < ColWdth) And (.Height < RwHght) Then
.Width = ColWdth
If .Height > RwHght Then .Height = RwHght
End If
End With
'Obtener el nombre de la imagen para el pie de foto
StrTxt = Split(.SelectedItems(j), "\")(UBound(Split(.SelectedItems(j), "\")))
StrTxt = ": " & Split(StrTxt, ".")(0)
So that only these parts remains in bold:
"
Fotografía nº 1: xxxxx"
"
Fotografía nº 2: xxxxx"
"
Fotografía nº 3: xxxxx" and so