Posts Tagged ‘Value’

What Is The Registry Value Name Of Vgod.dll?

Thursday, November 19th, 2009

It’s the last tip of an answer in yahoo answers, but i just can’t find/figure out what the value name is. I just need to delete it for the virus to be deleted completely.

How Can We Activex In Vb6 Return A Value?

Tuesday, August 18th, 2009

Can anyone tell me how can one return value from an OCX in VB6 to a Form.Give me example if posssible.I used
OCX CODE:
==========
Public Function PutIntValB() As Integer
PutIntValB = 3
End Function
And Called it in MAIN form:
Dim i as Integer
i=main.PutntValT
msgbox i
But nothing is displayed.
The above code works in OCX form but does not return Value when called in other Forms(where the OCX is used).