ok .. here goes a working sample VB .NET code for touchlib wrapper ofcourse ....
Imports TouchlibWrapper
Public Class Form1
Dim cs As TouchlibWrapper.CsTI
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
cs = cs.Instance
AddHandler cs.fingerDown, AddressOf cs_fingerdown
cs.startScreen()
End Sub
Private Sub cs_fingerdown(ByVal ID As Integer, ByVal tagID As Integer, ByVal X As Single, ByVal Y As Single, _
ByVal angle As Single, ByVal area As Single, ByVal height As Single, ByVal width As Single, ByVal dX As Single, ByVal dY As Single)
Console.WriteLine("FINGER DOWN : " & ID & " at (" & X & "," & Y & ")")
End Sub
End Class
Short and sweet ...