Re: Win32lib.ew
- Posted by Brian Broker <bkb at CNW.COM> Jan 24, 2000
- 427 views
On Mon, 24 Jan 2000 13:29:15 PST, Grape_ Vine_ wrote: >More so how do i turn off the scroll bars? You'll need to edit Win32Lib.ew... search for the following bit of code: className[ MleText ] = "edit" classType[ MleText ] = EDIT classStyle[ MleText ] = or_all( { WS_CHILD, WS_VISIBLE, WS_TABSTOP, WS_HSCROLL, WS_VSCROLL, WS_BORDER, ES_LEFT, ES_MULTILINE} ) -- ES_AUTOHSCROLL, -- ES_AUTOVSCROLL} ) and comment out the WS_HSCROLL and/or WS_VSCROLL lines. I'm thinking it might be nice to have them removed by default and let the programmer add them if desired. (I don't mind having a VSCROLL but I don't much care for the HSCROLL since the words can automatically wrap without it.) just a thought, -- Brian