RSView32 and VBA

M

Thread Starter

Mark

How do I access RSVIEW32 objects (such as button color, or trend attributes) using Visual Basic Application?

I have seen codes that accesses the tags, but I couldn't find one for control objects.

Thank you for your help.

Mark
 
Hi,

This is the same problem I'm encountering. I also want to access some properties and methods of RSTrendX in RSView32 application. If you find any useful help, please reply to the below address. I'll be really thankful

Tahir
tnk786 @ yahoo. com
 
D
Hi,

I'm also dealing with the same thing. Can anybody help me find books or source for AB examples using for RSView? Thanks so much.
 
K
Hi,

To access the objects properties, you first need to set the object to be visible to VBA. When using the VBA IDE it should then be possible to enter the object's name followed by a dot and see what properties are available, i.e. numericinput1.value, etc. The help files are quite good for this and pressing F1 often displays help for the object.
 
Have a look in "Object browser" of VBA or in its Help menu for:

gCommand.Execute "invoke [DisplayName].rstrendx1.[MethodName]"
 
Top