--- In [email protected], Ilkka Lehtoranta <[EMAIL PROTECTED]> wrote:
>
> On Fri, 9 Jun 2006, jahc2 wrote:
> 
> > I've been using this code for my nlisttree object:
> > 
> >     MBObj->NLT_Servers =(Object*) NListtreeObject,
> >         MUIA_NListview_Vert_ScrollBar, MUIV_NListview_VSB_On,
> >     End;
> > 
> > But I really need to add scrollbars as that list gets bigger. 
> > 
> > It seems you use nlistview to add scrollbars for nlist objects, but my 
> > attempts at using nlistview for nlisttree is not working..
> > 
> > 
> >     MBObj->NLT_Servers =(Object*) NListtreeObject,
> >     End;
> > 
> >     MBObj->NLT_Servers =(Object*) NListviewObject,
> >         MUIA_NListview_Vert_ScrollBar, MUIV_NListview_VSB_On,
> >   MUIA_NListview_NList, MBObj->NLT_Servers,
> >     End;
> 
> Try MUIV_NListview_VSB_Always

The following code gives me a scrollbar but no nlisttree (all entries are at 
one level)..

    MBObj->NLT_Servers =(Object*) NListtreeObject,
    End;

    MBObj->NLT_Servers =(Object*) NListviewObject,
        MUIA_NListview_Vert_ScrollBar, MUIV_NListview_VSB_Always,
  MUIA_NListview_NList, MBObj->NLT_Servers,
    End;


The following code doesnt give me any scrollbar:

    MBObj->NLT_Servers =(Object*) NListtreeObject,
        MUIA_NListview_Vert_ScrollBar, MUIV_NListview_VSB_Always,
    End;


Any other ideas? :/







Visit http://www.amiga.dk/tumult for MUI-related
information, especially about MUI custom classes. 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/MUI/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to