>>I have a combo box such as below. How do I get a scroll bar along the >>left or right side. Is this functionality supported? If so, does the >>same method work for List boxes. Part of the problem, is that I mostly >>copied these directly from the examples and don't know what the various >>style settings are since my documentation doesn't detail this option. >> >>Thanks in advance for any insight. >> $CBdropdown = $Window->AddCombobox( >> -name => "Dropdown", >> -left => 10, >> -top => 25, >> -width => 180, >> -height => 400, >> -scroll => 1, >> -style => WS_VISIBLE | 2 | WS_NOTIFY, >> ); >> >> Joe Frazier, Jr >> Technical Support Engineer >> Peopleclick.com >> 800-841-2365 >> [EMAIL PROTECTED] >>
> -----Original Message----- > From: Erick J. Bourgeois [mailto:[EMAIL PROTECTED] > Sent: Saturday, March 03, 2001 3:17 PM > To: perl-win32-gui-users@lists.sourceforge.net > Subject: Re: [perl-win32-gui-users] perl-win32-gui-users > > > Use either/both WS_HSCROLL | WS_VSCROLL in your style option. > > erick > never stop questioning > www.jeb.ca Thanks. That worked. I guess now, my question is is there any documention on the style attribute? Joe Frazier, Jr Technical Support Engineer Peopleclick.com 800-841-2365 [EMAIL PROTECTED] >