Many thanks,
Brian.
You can't get a print screen (emulate the Print Scrn function) by sending
a certain ASCII code. The best way to "force" a Print-Screen is to
issue an INT $05. Try the following example.
Procedure PrintScreen; Assembler;
Asm
INT 05
End;
Begin
PrintScreen;
End;
This will issue an INT $05 and you will get a print screen.
Mike McWhinney
Elja, Inc.
========================================================================
ELJA, Inc. TEL: (414) 357-6771 FAX: (414) 357-9394
email: elja...@mixcom.com
========================================================================
--
========================================================================
ELJA, Inc. TEL: (414) 357-6771 FAX: (414) 357-9394
email: elja...@mixcom.com
========================================================================