First of all, I found these docs on CPAN, so I wouldn't call this module underdocumented.

Second: why aren't you using the constants provided? The above docs mention which modes are legal for Mode. I tried to figure out exactly which one you're resetting, but bitwise OR of all constants listed gave me a value of 0x1F. Clearly, whichever bit you are resetting, it's not in this list.

I followed the link in the docs to Microsoft's reference page, but it's a dead end. A bit of poking around, and I came up with this link: Console Modes, explaining all available modes, both under "high-level" and "low-level" modes.

Anyway, once you figure out which bit to reset, you can do it using the constant, like this:

$mode &= ~CONSTANT;

p.s. My first guess would be that you need to use ENABLE_MOUSE_INPUT, but don't pin me down on it. It's not even clear to me what problem you are describing.


In reply to Re: win32::console question by bart
in thread win32::console question by arkamedis21

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.