View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Julio Julio is offline
external usenet poster
 
Posts: 19
Default treeView -- multiple selection

Either I'm missing something, or the example in puremis doesn't allow you to
select more than one item at a time.
JK

"Damon Longworth" wrote:

This link will give you a description of the SingleSel property:

http://msdn.microsoft.com/library/de...elproperty.asp

Here is an example of using the TreeView control:

http://puremis.net/excel/code/080.shtml

--
Damon Longworth

Don't miss out on the 2005 Excel User Conference
Sept 16th and 17th
Stockyards Hotel - Ft. Worth, Texas
www.ExcelUserConference.com


"julio" wrote in message
...
How do you set up a treeView control for multiple selection (i.e., select
multiple files with <Shift or <Ctll)? This

sub UserForm_Initialize()
......
tvFiles.SingleSel = False
.......

doesn't work (clicking on a new item clears the previous selection).

Thanks