-
locke_cole registered the Open MajorMUD project.
2006-05-21 19:06:58 UTC in Open MajorMUD
-
__InitVideo calls __WhichMode which returns an integer.
This integer is stored in a word (unsigned 16-bit
integer). Range checking code then checks to see if the
value stored is out of bounds (which, if __WhichMode
returns -1 (or $FFFFFFFF), it is). This results in a
runtime error 201.
The fix seems to be to change __WhichMode so that it
returns a word instead of an integer, and to...
2005-09-12 20:16:04 UTC in Delphi Crt
-
Originally I hosted just the code on Borland's CodeCentral site (http://cc.borland.com/), however, I've decided it might be better to host it here on SourceForge. This will provide a single place for people to submit bugs/suggestions/requests, as well as find the latest releases.
Anyways, if you have anything to offer (fixes, bug reports, suggestions) please feel free to use the facilities...
2005-06-27 22:46:55 UTC in Delphi Crt
-
Logged In: YES
user_id=29518
This is by design. Borland Pascal 7.0's Crt unit didn't
handle the tab character either and instead displayed it as
a raw tab character. Therefore tab handling must be done by
the application.
2005-06-27 22:09:02 UTC in Delphi Crt
-
Code:
WriteLn(#9#9'This is tabbed out'#9#9'So is this');
Expected:
The two leading tabs should indent the text "This is
tabbed out" by 10 characters (or some indent amount).
The two tabs in the middle of the string should indent
the text "So is this" as well.
Actual:
The literal tab character is displayed instead, no
indenting is performed.
2005-06-27 22:05:50 UTC in Delphi Crt
-
locke_cole registered the Delphi Crt project.
2005-06-27 05:14:12 UTC in Delphi Crt