I populate the cursor in form\load - insert into (,,heb..)
- I see the hebrew by cursor brow.
and yes, I see the hebrew in listbox wich base on this cursor.
> > 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,
>
> 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