Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Form Class with a grid
Message
General information
Forum:
Visual FoxPro
Category:
Classes - VCX
Miscellaneous
Thread ID:
00596755
Message ID:
00596759
Views:
16
>Happy Holidays Everyone!!!
>I have a class that is made up of a form with a grid in it.
>the grid has 1 column. When I instatiate the object, I put
>the right number of columns in the grid. The search works fine, but
>what I am tring to do is to on the fly handle the sort. For example,
>Lets say I send 6 Parameters to the class, it will put six columns in the grid.
>But what I want to do is also place thisline of code in to the click event of each header while I am Creating the form on the fly:
>
THISFORM.r_DoTheSort(SomeIndexVariable)
>So I guess the million dollar question is:
>Is it Possible to Add code to the Click event of the header while trying to create it on the fly IF the form I am referencing is classed?
>If it is possible, How can I do this?
>
>Thanks in advance

Leroy,
One way is to have in your class as many columns as you think you will need. Add the code to the Header object at design-time. At run-time, pass in the parameters for the columns you will actually need and use RemoveObject to get rid of the extra columns.

Another way is to create a Header class in a PRG. At run-time, add the extra columns but then use RemoveObject to get rid of the default Header object in each new column and then AddObject to add your own with the code embedded in the Click event. This works if the code is always the same in the Click event.

HTH.
Larry Miller
MCSD
LWMiller3@verizon.net

Accumulate learning by study, understand what you learn by questioning. -- Mingjiao
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform