TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Dennis Miller
NA
9
0
Coding a delegate in C#
Feb 3 2010 7:08 PM
I use a third party dll which returns information to my code in VB by way of a function in my code which I provide the dll with the address :
result = wLib.Initialize(Key,
AddressOf
ApiGuiCallback)
wLib is the third party dll, ApiGuiCallback is my function to receive the data from the dll.
My ApiGuiCallback Function is coded as such:
Private
Function
ApiGuiCallback(
ByVal
state
As
UInteger
, _
ByVal
msg
As
GuiMessage,
ByVal
buff
As
ImageInfo)
As
Integer
How do I code this in C# so that the dll will execute my ApiGuiCallback function upon it's completion?
Denny
Reply
Answers (
1
)
file Properties
Basics of C#