Sign in to follow this  
Followers 0
sachincool786

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

1 post in this topic

Quote

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

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.

image.jpg

 


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)

image.jpg


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!!!!!

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0