naphta
2014-02-18T18:27:24Z
Hello,

when I close one form after update, not anaother other form ! only the same form turn me crazy
I have a "RowDynamicformatting" error object not Contain the "|"
I tried to removed the grid activex 10Tec but the error returned is not too serious, but this is
Access 2010, I completed the migration a little regret for microsoft treeview but there are some alternatives on form

regards
Igor/10Tec
2014-02-19T06:10:55Z
It's completely unclear what problem you have. Can you send us a sample that demonstrates it?
naphta
2014-02-20T14:35:54Z
here the capture
naphta attached the following image(s):
Igor/10Tec
2014-02-21T08:35:33Z
This can happen if the RowDynamicFormatting event handler has an improper syntax. Can you send us your database with source code so we can see it?
naphta
2014-02-22T10:26:28Z
hello,

here the code where is nothing, only a comment

Private Sub grdmain_RowDynamicFormatting(ByVal lRow As Long, oForeColor As Long, oBackColor As Long, oFont As Object)
'
End Sub


i don't use rowdynamicformatting it does not matter for the moment

can you tell me if there is way to populate the treeview but randomly as the Microsoft's treeview ? father-son index

thanks


Igor/10Tec
2014-02-24T07:07:27Z
Originally Posted by: naphta 


i don't use rowdynamicformatting it does not matter for the moment



We need a sample we can launch on our dev pc to see what is wrong.


Originally Posted by: naphta 


can you tell me if there is way to populate the treeview but randomly as the Microsoft's treeview ? father-son index



There are several samples of doing this in the iGrid New Features Demo.

You can also find the corresponding description in the help file. The attached screenshot will help you to find it.
Igor/10Tec attached the following image(s):
naphta
2014-02-24T11:55:37Z
Hello,

Thank you, I have already seen all the examples,
but
I do not want to fill the treeview sequentially
but randomly
like that
http://msdn.microsoft.co...443386%28v=VS.60%29.aspx 


I am currently testing different methods to populate the grid like a treeview
for the moment it's too long to fill

thanks
here a sample with microsoft Treeview 2 recordeset

'Liste des devis lettre g
    Do Until rs3.EOF
        Set nodo = .Nodes.Add(rs3!numclifactu & "czz", tvwChild, rs3!num & "gzz", "Devis N°" + rs3!NDevis)
        If rs3!devisrefuse = 2 Then
            nodo.image = "DEVISR"
        Else
            nodo.image = "DEVIS"
        End If
        rs3.MoveNext
    Loop

'Liste des commandes et BL lettre d , non facturé
    Do Until rs2.EOF
        Select Case rs2!LaPosition
            Case 2
                dekoi = "Commande N° " + rs2!NCommande
                zimage = "OUVERT"
            Case 3
                dekoi = "BL N° " + rs2!NBL
                zimage = "FERMER"

        End Select
        Set nodo = .Nodes.Add(rs2!numclifactu & "czz", tvwChild, rs2!num & "dzz", dekoi)
        nodo.image = zimage
        rs2.MoveNext
    Loop
Igor/10Tec
2014-02-25T07:53:49Z
The AddRow method of iGrid with its vRowParent parameter allows you to populate the grid treeview as you need. With this parameter, you can add new child nodes to your existing parent nodes in arbitrary order.
naphta
2014-02-25T18:36:52Z
hello,

It's over for me,
3000 lines of code to change
I'm quiet now


I found solutions to not use the treeview on form
I can go on new adventure, 1000 thanks to father Igor

soon