Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~6K People Reached
Favorite Forums
Favorite Tags
Member Avatar for carmamir

Hi Guys, Quick question. I have DLL which can't be embadded. DLL is added to reference. DLL is added to solution (folder -> /lbr/*.dll) Issue start with not found error (IO) for used DLL. I'm using advanced installer to add DLL. Problem is that I don't know how to add …

0
198
Member Avatar for carmamir

Private WithEvents tim As New System.Timers.Timer Public Delegate Sub doSub() Private thingToDo As doSub Public Sub TimeOut(ByVal d As doSub, ByVal milliseconds As Integer) thingToDo = d tim.AutoReset = False tim.Interval = milliseconds tim.Start() End Sub Private Sub tim_Elapsed(ByVal sender As Object, ByVal e As System.Timers.ElapsedEventArgs) Handles tim.Elapsed Invoke(thingToDo) End …

Member Avatar for carmamir
0
3K
Member Avatar for carmamir

I tried to find on Internet as there is big problem with their API. Lack of documentation = can't implement it without super dooper experience in VB.NET (and I'm pretty new)... Any one used it ? All codes found all around internet are not working (VB2008/VB2010), their support also do …

Member Avatar for carmamir
0
2K