|
|||||||||
There is also OCX library with object alowing you to share Desktop over HTTP. You may download it from Dowload Page. You can share your Form with TxdsHTTPShareForm or entire Desktop on the Net. You can use URL: http://<Computer name or IP Adress running TxdsHTTPShareForm>:<Port_Adress_that_you_define> to access your shared Form or Desktop. The browser passes user mouse clicks back to TxdsHTTPShareForm and TxdsHTTPShareForm simulates them on shared form or Desktop, and returns new updated image of the Form or Desktop. TxdsHTTPShareForm uses JPEG image compression. Port property defines TCP/IP port number on wich server listens for client connections. On client connection server returns HTML page based on HTML template stored in HTTPtemplate property. The HTML page contains Image. property ServerPort:Integer; - defines TCP/IP port number on wich server listens for client connections. property Active:Boolean; - define if component is active property JPEGQuality:TJPEGQualityRange;- quality of JPEG image returned (100- max, 0 min) property ShareKind:TxdsShareKind;- what to share Desktop, Entire form or Form Client Area. * property HTTPTemplate:TStrings; - HTML template used to produce pages. property ProcessClicks:Boolean; - If to process user clicks in the browser and generate clickable image or not. property MouseEmulation:TxdsMouseEmulation; - Has effect only when you're sharing entire application and only if ProcessClicks set to true. Defines how mouse clicks are emulated. When set to meForeground the mouse is emulated exactly like for DeskTop sharing (your application must be in foreground to get mouse emulation events), when set to meBeckground mouse emulation events go directly to your application windows, so application need not to be in foreground. This feature is not finished yet works properly only when mouse clicks occure in client area of window. * ShareKind for Entire Form or Form Client Area differ in that when Entire Form is shared the Form must be on the top to work properly, when only Form Client Area is shared the from may not be on top, but must not be minimized. Why to register?
|