Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site utcs.uucp Path: utzoo!utcs!wagner From: wagner@utcs.uucp (Michael Wagner) Newsgroups: net.micro.amiga Subject: Re: windows Message-ID: <1081@utcs.uucp> Date: Tue, 4-Feb-86 00:36:13 EST Article-I.D.: utcs.1081 Posted: Tue Feb 4 00:36:13 1986 Date-Received: Tue, 4-Feb-86 00:41:23 EST References: <173@ndsuvax.UUCP> Reply-To: wagner@utcs.UUCP (Michael Wagner) Organization: University of Toronto - General Purpose UNIX Lines: 18 Keywords: amiga windows c Summary: In article <173@ndsuvax.UUCP> nc196039@ndsuvax.UUCP (Walter Reed) writes: > >Does anyone know how to create a window (in the c language) without a title >bar? I would like to display 25 lines of text. There is a flag byte, called type in the AmigaBASIC description of WINDOW. It's called something else in C, but it's clearly the flag byte. The bit corresponding to 2 base 10 says whether you get a drag bar or not. Actually, you probably want to turn off all the bits in that byte (or perhaps leave on the 5th bit i.e. decimal 16, which says virtual display will be built and used to redisplay when a window uncovers this one). Hope that helps. Michael