InkPicture Control

G

Guest

Can anyone provide example code of using the InkPicture control Access on a
tabletpc?
 
Joined
Oct 2, 2012
Messages
1
Reaction score
0
Private Sub Command283_Click()
'CODE to SAVE InkPicture to FILE
Dim objInk As MSINKAUTLib.InkPicture
Dim bytArr() As Byte
Dim File1 As String

File1 = "C:\test.isf"

Set objInk = Me.InkPicture2.Object

If objInk.Ink.Strokes.Count > 0 Then
bytArr = objInk.Ink.Save(2)
Open File1 For Binary As #1
Put #1, , bytArr
Close #1
End If
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top