Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Refering to objects in a container
Message
From
06/07/1999 12:34:34
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
 
To
06/07/1999 12:25:16
General information
Forum:
Visual FoxPro
Category:
Classes - VCX
Miscellaneous
Thread ID:
00237815
Message ID:
00237821
Views:
13
>I made a container that has a command button and a grid in it.
>
>I want to refer to the grid from the command button, but I am unsure how to do that. Do I use something like this::mygrid.property?
>
>How do I know that mygrid won't suffer a name change?

this.parent.mygrid.someproperty
If you change the grid name you would do that in class so change in code too. Otherwise to be free of name you would do something like :
with this.parent
   for each oControl in this.controls
      if oControl.baseclass = "Grid" && Found grid
           oControl.SomeProperty = Something
          exit
      endif
   endfor
endwith
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform