摘要: function IntToBin(Value: Integer; Count: Integer = 32): string;var iTemp: Integer;begin Result := ''; while Count > 0 do begin iTemp := Value shr (Count - 1) and 1; case iTemp of 1: Result := R... 阅读全文
posted @ 2010-12-19 13:11 fyen 阅读(284) 评论(0) 推荐(0) 编辑
摘要: RtcHttpClient1在程序关闭时没有断开会出现上述的Runtime error 216的问题解决方法在主窗口中的OnClose中执行客户端断开 阅读全文
posted @ 2010-12-19 10:30 fyen 阅读(494) 评论(0) 推荐(0) 编辑