Private Sub CommandButton46_Click() Dim inkP As New MSINKAUTLib.InkPicture Dim strokesm As MSINKAUTLib.InkStrokes Dim offsetX As Single Dim offsetY As Single offsetX = 390 offsetY = 1020 Set combinedInk = inkP.ink Set strokesm = InkPicture2.ink.strokes iret = combinedInk.AddStrokesAtRectangle(strokesm, strokesm.GetBoundingBox()) inkP.ink.strokes.Move offsetX, offsetY inkP.AutoRedraw = True For st = 0 To InkPicture2.ink.strokes.Count - 1 Set inkP.ink.strokes.Item(st).DrawingAttributes = InkPicture2.ink.strokes.Item(st).DrawingAttributes Next Dim r As IInkRenderer Set r = New InkRenderer Dim hDC As LongPtr hDC = GetDC(0) r.Draw hDC, inkP.ink.strokes ReleaseDC 0, hDC End Sub