Welcome To The Home Of The Visual FoxPro Experts  
home. signup. forum. archives. search. google. articles. downloads. faq. members. weblogs. sponsors. rss.
 From: Koen Piller
  Where is Koen Piller?
 Santpoort-Zuid
 Netherlands
 Koen Piller
 To: chaim dudi
  Where is chaim dudi?
 Jerusalem
 South Carolina - Israel
 chaim dudi
 Tags
Subject: RE: Treeview unicode
Thread ID: 231487 Message ID: 231493 # Views: 31 # Ratings: 0
Version: Visual FoxPro 9 Category: Active X Controls & OLE Automation
Date: Sunday, June 14, 2009 1:18:18 PM         
   


> 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



COMPLETE THREAD
Treeview unicode Posted by chaim dudi @ 6/14/2009 10:12:16 AM
RE: Treeview unicode Posted by Koen Piller @ 6/14/2009 10:33:19 AM
RE: Treeview unicode Posted by chaim dudi @ 6/14/2009 11:20:08 AM
RE: Treeview unicode Posted by Koen Piller @ 6/14/2009 1:18:18 PM
RE: Treeview unicode Posted by chaim dudi @ 6/14/2009 3:10:53 PM
RE: Treeview unicode Posted by Koen Piller @ 6/14/2009 10:52:21 PM