Answered by:
A question about the RDP control's event OnLoginCompleted
Question
-
Hello, dear all,
How could RDP ActiveX control know the time when the event OnLoginCompleted has been triggered? Does it compatible with WinXP?
Thank you all very much.
Thursday, May 23, 2013 8:33 AM
Answers
-
hi BOL,
Thanks for posting!
I think you can read more about MSDN Document:http://msdn.microsoft.com/en-us/library/windows/apps/hh994968.aspx
In this article,you can use this method:
function handler() { /* Your code */ } // attachEvent syntax remoteDesktopClient.attachEvent("onlogincompleted", handler); remoteDesktopClient.detachEvent("onlogincompleted", handler);In function handler which is defined by yourself,you can get the "onlogincompleted".
About the"Does it compatible with WinXP?",you can see this descript:
Requirements
Minimum supported client
Windows 8 [Windows Store apps only] Minimum supported server
Windows Server 2012 [Windows Store apps only]
Hope this helps!
- Marked as answer by B0L Thursday, May 30, 2013 6:55 AM
Thursday, May 30, 2013 3:00 AM
All replies
-
I am using the RDP activeX on a Win8 Pro (the version should be 6.2.9200). Thanks.Thursday, May 23, 2013 10:49 AM
-
hi BOL,
Thanks for posting!
I think you can read more about MSDN Document:http://msdn.microsoft.com/en-us/library/windows/apps/hh994968.aspx
In this article,you can use this method:
function handler() { /* Your code */ } // attachEvent syntax remoteDesktopClient.attachEvent("onlogincompleted", handler); remoteDesktopClient.detachEvent("onlogincompleted", handler);In function handler which is defined by yourself,you can get the "onlogincompleted".
About the"Does it compatible with WinXP?",you can see this descript:
Requirements
Minimum supported client
Windows 8 [Windows Store apps only] Minimum supported server
Windows Server 2012 [Windows Store apps only]
Hope this helps!
- Marked as answer by B0L Thursday, May 30, 2013 6:55 AM
Thursday, May 30, 2013 3:00 AM -
Thanks! Bill...Thursday, May 30, 2013 6:55 AM