Well, I still don't have my vertical scroll bar. I tried setting the dialog id to 5000, as Joe suggested, but this didn't help. I also tried increasing the extra memory for the temporary app to 2Mb and reducing the size of the list box. None of this helped. I'm still open to ideas. BTW, I'm using a Powerbook G3 running OS 8.6 and am using a recent beta of FB^3. Joe Wrote: > Change all of the ids you use in the creation of these items, particularly the > scroll bar to like 5000 and above - to help assure there is no conflict with ids > in other parts of your code. Even though you moved it to the beginning, that > does not prevent subsequent overrides - ie confusion. Maybe? > This was a good idea, Joe, and reminded me to set the resFile back to the app's resfile, but it didn't solve the problem. Scott Spencer wrote: > Can you confirm that you are succesfully creating a list (as the Print > statement in Fn initialize does below)? > Believe it or not, I create the list in the dialog box and can select an item from the choices that are visible. The only thing missing is the scroll bar. > Mark, if you're > using the List Manager (which I assumed) you don't need to create a seperate > scroll bar. > > Just set the desired scroll parameter to true in the toolbox call: > > listH& = FN LNEW > lRect,dRect,cellSize,lProc%,wndPtr&,drawIt,hasGrow,scrollH,scrollV) > > If you want a horizontal scroll, scrollH = _true > If you want a vertical scroll, scrollV = _true > > BTW, on the FutureBASIC.org site, there is a great file by Mars called "List > Utils.INCL". Has some great List Manager stuff in it. > I appreciate your suggestion, but I'm already doing all of this and have already checked Mars' examples. I can even get a horizontal scroll bar by setting that parameter to _true. The only thing I can't get is the vertical scrollbar. Mark Goodes