lordhawkins
Programmer
I need to use a Hierarchical Flexgrid (the ActiveX that comes with VFP7) because i need to be able to select multiple cell for fill them with data.
[ul]How can I populate the grid? I've tried:
but got the message Ole error Unknown member[/ul]
Do I need to send an AddObject command to the form, creating the grid on the fly?
If that is so, what's the name of the classes to use? I've tried this:
but the class name is not right[/code]
Lastly. It's possible to use the normal grid from VFP to select multiple cells? If that is so, how?
[ul]How can I populate the grid? I've tried:
Code:
SELECT * from rollos WHERE procesado=1 INTO CURSOR gaga
thisform.Grid1.r.Recordset = "gaga"
Do I need to send an AddObject command to the form, creating the grid on the fly?
If that is so, what's the name of the classes to use? I've tried this:
Code:
thisform.AddObject("grid2","Olecontrol","MSHierarchicalFlexGridLib.MSH")
Lastly. It's possible to use the normal grid from VFP to select multiple cells? If that is so, how?