Scroll Bar Cannot Be Placed in Right Bar of WINDOW Type 1 or 7 (40373)
The information in this article applies to:
- Microsoft QuickBASIC Compiler for the Apple Macintosh
This article was previously published under Q40373 SUMMARY
Creating a window with type 1, 7, -1, or -7 with the WINDOW
statement in QuickBASIC for the Apple Macintosh creates a window that
has a title bar and a size box. A vertical box (a bar) in the window
above the size box has proportions that seems to invite adding a
scroll bar. However, when you place a scroll bar in this section of
the window using NewScroll (which is an MBLC routine in QuickBASIC),
the scroll bar does not appear. This is a design limitation of window
types 1, 7, -1, and -7 in QuickBASIC.
The area of the window directly above the size box is considered part
of the window border. The border of a window is not a valid display
area. An attempt to write on the border of a window is considered
outside the window's display area and nothing is written by NewScroll
(or any other statement).
MORE INFORMATION
To work around this design limitation, a scroll bar can be placed
flush with the outer edge of a window by using one of the other window
types (2, 3, 4, 5, 6, -2, -3, -4, -5, or -6), which have only a narrow
border. Another option is to place the scroll bar on the left-hand
side of the window where the border is narrow in every window type.
The following program shows two different types of windows. The window
with a type of 1 does not allow the scroll bar to be flush against the
right-hand side of the window, while window type 2 allows the scroll
bar.
The following is a code example:
WINDOW 2,"Test Window",(50,100)-(250,300),1
DIM scr%(5)
SetRect scr%(0),179,0,195,185
h&=0
vis%=1
min%=0
max%=5
value%=0
NewScroll h&,scr%(0),vis%,min%,max%,value%
WINDOW 3,"Test Window 2",(275,90)-(450,295),2
SetRect scr%(0),162,0,175,205
h&=0
vis%=1
min%=0
max%=5
value%=0
NewScroll h&,scr%(0),vis%,min%,max%,value%
Modification Type: | Minor | Last Reviewed: | 1/9/2003 |
---|
Keywords: | KB40373 |
---|
|