Announcement

Collapse
No announcement yet.

Time & sales Data through Desktop API

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Time & sales Data through Desktop API

    Hi,

    I am trying to get Time & sales data through desktop API and my program is being written in VB.Net (VS 2003). When I wrote code Private Sub esignal_OnTimeSalesChanged(ByVal tsHandle As Long) Handles esignal.OnTimeSalesChanged it highlighted "Handles esignal.OnTimeSalesChanged " and threw and excetpion that Signature mismatch. I get reall time data and I called its event in the same way and it worked.

    Please Help me.

    regards,
    Imran
    Last edited by umarmuk3; 09-30-2008, 12:32 AM.

  • #2
    Private Sub esignal_OnTimeSalesChanged(ByVal tsHandle As Integer) Handles esignal.OnTimeSalesChanged

    is the correct declaration for the event handler. One suggestion for you is to take our VB sample in Visual Studio 6 and use .Net 2003 IDE to convert it. After that, you can try to run that .Net 2003 sample and see if you get the exception still.

    Comment

    Working...
    X