Re: Pro*C problem.
From: Paul Beardsell <paul_at_hoxton.demon.co.uk>
Date: Thu, 5 Aug 1993 22:45:30 +0000
Message-ID: <744590730snz_at_hoxton.demon.co.uk>
Date: Thu, 5 Aug 1993 22:45:30 +0000
Message-ID: <744590730snz_at_hoxton.demon.co.uk>
>void _settextposition (unsigned char Row, unsigned char Column)
>_asm {
> mov ah,2 ;Fnc 2 - set video cursor
> mov bh,1 ;BH=video page
> mov dh, Row
> mov dl, Column
> int 10h
> }
I don't think that will work because int 10h will cause a protection exception. Use ANSI codes as suggested by another poster.
-- Paul Beardsell 21 Finn House, Bevenden St, HOXTON, ~~~~~~~~~~~~~~ Hackney, London, N1-6BN, UK. paul_at_hoxton.demon.co.uk pbeardsell_at_cix.compulink.co.uk (+44 or 0)71 608-2391Received on Fri Aug 06 1993 - 00:45:30 CEST