Board index » delphi » BP7 + Protected mode apps + Windows 95/98 = slowdown

BP7 + Protected mode apps + Windows 95/98 = slowdown

Hey

I'm experiencing a problem with my protected mode application under windows
95/98. When i launch my app, two things happens :
1) the system becomes very slow under windows
2) when i hit the \ key (ALTGR+8), the backslash take 1 second to appear on
the screen.

And sometimes, the keyboard lock hit self (like if SHIFT or CTRL key stay
down).

Does someone have any idea ?

 

Re:BP7 + Protected mode apps + Windows 95/98 = slowdown


Quote
"Alexandre Morette-Bourny" <AMore...@Eurice.Com> wrote:
>Hey

>I'm experiencing a problem with my protected mode application under windows
>95/98. When i launch my app, two things happens :

That's because when 16 bit apps are loaded, the tasking methods are
changed.  It goes from preemtive to cooperative.

--
For the latest Beta of Huffman Compression Engine II
http://www.webworldinc.com/joejared/WLH7021a.zip
Ways to get here from there:
ICQ http://wwp.mirabilis.com/12016722
ftp://webworldinc.com/joejared
http://www.webworldinc.com/joejared
For windows 95 with netbeui loaded //206.135.17.202
Joe.Ja...@301.sasbbs.com
 * Origin: Orange, CA, 714-532-15860101 (1:103/301)

Re:BP7 + Protected mode apps + Windows 95/98 = slowdown


Alexandre Morette-Bourny schrieb:

Quote
> I'm experiencing a problem with my protected mode application under windows
> 95/98. When i launch my app, two things happens :
> 1) the system becomes very slow under windows

You have to release the current virtual machine time-slice while you are waiting
for a keystroke, i.E. like this:

begin
  repeat
    asm
      mov ax, 1680h
      int 2Fh
    end;
  until KeyPressed;
end.

By, Andreas.

Other Threads