Pass Parameter to Activex using HTML
-
hi all i have made a activex controll in vb6 and here is code for its properties which i want to assign value using the
Public Property Let WriteCardId(Net8ServiceIn As String) WriteCardId = Net8ServiceIn MsgBox "Card Id Property " + Net8ServiceIn PropertyChanged "WriteCardId" End Property Public Property Get WriteCardId() As String WriteCardId = WriteCardId MsgBox "Card Id Property " + WriteCardId End Property Public Property Set WriteCardId(Net8ServiceIn As Object) WriteCardId = CStr(Net8ServiceIn) MsgBox "Card Id Property " + WriteCardId PropertyChanged "WriteCardId" End Property Private Sub UserControl_ReadProperties(PropBag As PropertyBag) WriteCardId = PropBag.ReadProperty("WriteCardId", "111") MsgBox "read Properties changed" End Sub
when i access this from html page using Object TagParam name="WriteCardId" value="SCOTT"
it does not pass values to activex as no Messagebox is shown,,tags < and > are added on param but unable to add on this editor.Regards. Tasleem Arif