S
soxmax
This is driving me crazy. Here is the C interface:
int displayLiveVideo(int width, int height, HWND windowHandle);
I have created a PictureBox in my VB.net application and tried passing
a handle like this:
Dim winHandlePtr As IntPtr
winHandlePtr = PictureBox1.Handle
status = displayLiveVideo(width, height, winHandlePtr)
What am I doing wrong? Any help is appreciated.
Best Regards,
Derek
int displayLiveVideo(int width, int height, HWND windowHandle);
I have created a PictureBox in my VB.net application and tried passing
a handle like this:
Dim winHandlePtr As IntPtr
winHandlePtr = PictureBox1.Handle
status = displayLiveVideo(width, height, winHandlePtr)
What am I doing wrong? Any help is appreciated.
Best Regards,
Derek