ActiveX trouble setting properties

Using RealStudio 2012r1.
Just designed an ActiveX control using Delphi.
Testing this OCX with VB6 it works correctly.
Using RS 2012r1, I create a new poject, and insert an OleContainer in the form, then right click and select my OCX.
Using my OCX does not matter, because using other controls, for example Microsoft Rich Textbox I get the same problem.

Problem is that I can not set properties to the control, because all of the following gives me error when compiling:

olecontainer1.value(Text) = "HELLO" olecontainer1.value("Text") = "HELLO" olecontainer1.value("Text").Value="HELLO" olecontainer1.text="HELLO"

So, what is the correct way to interface to properties in an ActiveX control ?