I would like to display strokes that I have saved previously on an inkPicture Object in Ms Access (it is on a form via ActiveX).
The strokes are saved in a table as an ole-object in the field 'Strokes'.
Now, doing it once is easy enough (one line of code), I can use this snippet without any problem :
Public Sub loadInkImage(MyInkPic As MSINKAUTLib.InkPicture)
MyInkPic.Object.Ink.Load (Me.Strokes)
End Sub
The problem comes in when I want to do it a second time : the inkpicture is not 'clean' any more and cannot load the strokes.
Just deleting the existing strokes doesn't work, so how can I fill the same inkpicture again ?
Thanks!