Skip to content
This repository has been archived by the owner on Dec 24, 2020. It is now read-only.

Latest commit

 

History

History

Q43260

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
layout title permalink
page
Q43260: Vertical Scroll Inactive with MODE CO40 and Dual Monitors
/pubs/pc/reference/microsoft/kb/Q43260/

Q43260: Vertical Scroll Inactive with MODE CO40 and Dual Monitors

Article: Q43260
Version(s): 2.x
Operating System: MS-DOS
Flags: ENDUSER | S_C buglist2.20
Last Modified: 18-APR-1989

While debugging a program using Microsoft CodeView and dual monitors,
the vertical scroll bar is disabled when the video mode is set to
40-line color text. This occurs if the mode is set either at the
command line

   MODE CO40

or from within a program as follows:

   _setvideomode(_TEXTC40);

The scroll bar remains inactive until the mode is changed. This
problem does not occur on a single monitor system or in any other
video modes.

Microsoft has confirmed this to be a problem in Version 2.20. We are
researching the problem and will post new information as it becomes
available.

The following program demonstrates the problem:

#include <graph.h>

void main (void)
{
  _setvideomode(_TEXTC40);
  _setvideomode(DEFAULTMODE);
}