Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_vb thread: RE: Bold node in a tree view


Message #1 by "Duncan" <duncan.faulkner@n...> on Mon, 1 Apr 2002 22:02:28 +0100
I need the word...'Reports' to be bolded.


Private Sub Form_Load()
    
    Dim nodX As Node
   
  'add some test items
   Set nodX = tvListRpt.Nodes.Add(, , "R", "Reports")
   Set nodX = tvListRpt.Nodes.Add("R", tvwChild, "C1", "Suspense Reports")
   Set nodX = tvListRpt.Nodes.Add("C1", tvwChild, "C11", "Basic Suspense")

Does anyone know of a way to bold text in the root of a tree structure?


Thanks.

  Return to Index