Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Hierarchy grid
Message
De
10/11/2003 11:11:32
 
 
À
08/11/2003 11:10:12
Cetin Basoz
Engineerica Inc.
Izmir, Turquie
Information générale
Forum:
Visual FoxPro
Catégorie:
Contrôles ActiveX en VFP
Titre:
Divers
Thread ID:
00847806
Message ID:
00848342
Vues:
19
It looks like it did not like my XML.
I am testing with the one from MS sample and it’s fine now.
But the program is dying at This.hflex.CollapseAll.
FoxPro is using more and more memory till computer is not responding.
Any idea?


>>Has somebody had any luck with FlexGrid?
>>If yes, can I populate it from XML file?
>>
>>Thanks, Mark
>
>Mark,
>FWIW always use Hflexgrid not Flexgrid.
>
>#define XMLFile 'myXML.xml'
>Local oRecordSet As ADODB.Recordset
>Local oConn As ADODB.Connection
>
>strCn =	"Provider = MSDAOSP; Data Source=MSXML2.DSOControl.2.6;"
>
>oRecordSet = Createobject("adodb.recordset")
>oConnection = Createobject("adodb.connection")
>
>With oConnection
>  .Provider = "MSDataShape"
>  .ConnectionString = strCn
>  .Open
>Endwith
>
>oRecordSet.Open(XMLFile,oConnection)
>ShowMe('Contents',oRecordSet)
>
>Function ShowMe
>Lparameters tcCaption,toRecordset
>oForm = Createobject('myForm', tcCaption,toRecordset)
>oForm.Show
>Read Events
>Endfunc
>
>Define Class myform As Form
>  Height = 450
>  Width = 750
>  Name = "Form1"
>
>  Add Object hflex As OleControl With ;
>    Top = 10, Left = 10, Height = 430, Width = 730, Name = "Hflex", ;
>    OleClass = 'MSHierarchicalFlexGridLib.MSHFlexGrid'
>
>  Procedure Init
>  Lparameters tcCaption,toRecordset
>  This.Caption = tcCaption
>  This.hflex.Datasource = toRecordset
>  This.hflex.CollapseAll
>Endproc
>  Procedure QueryUnload
>  Clear Events
>Endproc
>Enddefine
>
Cetin
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform