What does an application have to do in order “support” Remote Desktop Services?

前端 未结 7 1790
情歌与酒
情歌与酒 2020-12-23 10:50

I have a Delphi program that needs to be run via Remote Desktop Services. What should I look out for that would stop it running properly ?

相关标签:
7条回答
  • 2020-12-23 11:37

    Double buffering is one such thing.

    Generally double-buffering is a great thing, and I use it all the time. See for instance my components (1), (2), and (3). They are all double-buffered, and therefore completely free from flickering (and easy to implement), but if you run this remotely, you have to send bitmaps and not GDI commands, so it might be rather slow (and uneconomical).

    0 讨论(0)
提交回复
热议问题