> OK
> On form load I start with:
>
CREATE CURSOR curstree (key c(4), parent c(4), text c(50))
> On form init I call to other metod with the code:
>
Local xstat
> Thisform.LockScreen = .T.
>
>
> ThisForm.ThemedOutlookNavBar.Panes.panequry.oleTree.ImageList=ThisForm.ThemedOutlookNavBar.Panes.panequry.TreeImages
>
> o = ThisForm.ThemedOutlookNavBar.Panes.panequry.oleTree.Nodes
> o.Clear
> Scan
> If Left(Alltrim(Parent),2) = '0_'
> oNode = o.Add(,1,Alltrim(Key),Alltrim(Text),0)
> Else
> oNode = o.Add(Alltrim(Parent),4,Alltrim(Key), Alltrim(Text),0)
> oNode.Sorted = .T.
> Endif
> xstat = Int(Val(Key))
> oNode.Image = Icase(xstat=1,"request",xstat=2,"review","porder")
> Endscan
> Thisform.LockScreen = .F.
>
> I use with ole treeview (mscomctllib)
>
>
>
> >
> >
> > Hi,
> >
> > Treeview made by pure Fox code or are you using an ActiveX? Please give in the 1st case the FoxCode, in the 2nd case which ActiveX control are you using?
> >
> > Regards,
> >
> > Koen
Hi,
How do you load your curTree and what is the content? If you populate an ordinary listbox with curTree, do you see the Hebrew text?
Regard,
Koen