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


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



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