Not able to make object "VBA contolled" (sos)

sachincool786

Member
Join Date
Dec 2014
Location
india
Posts
48
Dear Experts!!!

Actually i have two problems :

1. I want to change the object (FT View SE v8.0) property to "VBA controlled". But its not allowing me to do it, like as you can see on the pic.






2. I want to make an array of objects in FT View like as shown in the pic (Image of VB form): the object name is azul and the index is 0 so the object shown in the pic is azul(0)




VB Form code is :

Private Sub Form_Load()
Dim i As Integer
For i = 1 To 224
Load gris(i)
azul(i).Visible = True
Next i
azul(0).Visible = True
For i = 0 To 224
azul(i).Top = gris(0).Top
azul(i).Width = gris(0).Width
Next i
For i = 0 To 224
azul(i).Left = azul(0).Left + i * azul(0).Width
Next i
End Sub

As you can clearly see in VB code I have created one object only, but rest of the objects are being created by Code only

I want to do the same thing in FT View SE v8.0


Please please help!!!!!
 

Similar Topics

Hi all. I'm running a VBA code on my FTView which is actually working, but everytime I open the display that calls the VBA code, it throws the...
Replies
28
Views
1,824
Many of my current projects include I/O status screens listing all discrete inputs and outputs by module, with a description and on/off indicator...
Replies
1
Views
6,963
Have a very simple global object that passes three parameters to open the (ra-bas) common-analogedit popup. The min and max and the popup always...
Replies
0
Views
1,615
I have a requirement to implement in factory talk view studio se It is to block the user from interacting with the display, sort of disabling...
Replies
11
Views
4,219
Dear Expert. I have problem to rotating the objects. (object from Graphics) Tool bar, Format menu, Rotate is disable. Is there any option to...
Replies
0
Views
2,122
Back
Top Bottom