Help With Fun ActiveX Control

B

bgreer5050

I am trying to use the ActiveX Control at

http://www.softcities.com/JvEncrypt/transfer/1863.htm

I have a form that has the followinf fields:

Text
Encrypted

I have a button that fires the following code.

Private Sub Command9_Click()
Encypted.Text = EncryptString([Text])
End Sub

I have the ActiveX Control on the form and the ActiveX Control
registered.

I get the following error:

Sub or Function not defined.
 
B

Bill Mosca

I assume that EncryptString is the user-defined function that cannot be
found. I suggest you contact the source of the ActiveX control.

We can't help much with non-native controls, and I for one, never use
ActiveX controls because they are usually buggy and offer no documentation or
support.
 
Top