vote up 0 vote down star

Hi guys,

I'm using this EDIMAX IP Cam (IC-1520DP) which has a browser based administration. When I first login, It ask me to install an OCX (IPCamPluginMJPEG.ocx). Now I wanna use this OCX so I can have the camera displayed on a form in VB6, I can add a reference to the OCX and everything is fine but I can't initialize or use it at all since its asking for some parameters that are being passed to it by the PARAM html tag when It was used in IE.

Obviously I can't use the PARAM tag in VB6, so is there any other way I can pass the parameters?

Or do you have better ways to display the live camera feed on a form in VB6? The camera also has this CGI command that returns One multipart JPEG video stream but I totally don't have any idea how to use it.

flag

2 Answers

vote up 1 vote down

It's simple: Take the name attribute of the param tag and set the same property of the ActiveX control with the value of the value attribute. Like this:

Sub Form_Load()
    MyControl.Param = Value
    ...
End Sub
link|flag
+1. The attributes may also appear in the VB form designer properties window. – MarkJ Oct 5 at 11:12
vote up 0 vote down

Hm.. come to think of it, I never really actually tried doing this. Its because I don't see the param from the intellisense whenever I press the dot(.) after the control name.

Will try this, thanks!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.