|
|
Browse by Tags
All Tags » RemoteInvoke
-
Hi All,
I have downloaded, and am using, the evaluation version of DotImage 5.0d SDK w/OCR.
The web application that I am writing has some design constraints that I am trying to overcome. I want the application to look and act like the demo application found here: http://www.atalasoft.com/ajaxviewer/ The thumbnails should ...
-
I am displaying image on WebImageViewer and it successfully get displayed on my machine.
But while deploying application on other machine which donot have Visual Studio 2005 but have .Net Framework 3.0, the image doesnot get displayed.
Pls help!
-
You can use a RemoteInvokable method to switch pages of a Tiff file by opening the same image at a different frame index. Something like this:
// Open a particular frame[RemoteInvokable]public void Remote_LoadFrame(string url, int frame){ this.WebAnnotationViewer1.OpenUrl(url, frame);}
The current version of the ...
-
No, they won't work that way... you will have to chain them together like this:
// this function starts the chainfunction OpenImage(url){ WebImageViewer1.RemoteInvoked = OpenImageCallBack; WebImageViewer1.RemoteInvoke('Remote_OpenImage', new Array(url));}
function OpenImageCallBack(){ ...
-
Here is some JavaScript code that I used to create a custom return event for a RemoteInvoke:
function OpenImage(url){ WebImageViewer1.RemoteInvoked = OpenImageCallBack; WebImageViewer1.RemoteInvoke('Remote_OpenImage', new Array(url));}
function OpenImageCallBack(){ WebImageViewer1.RemoteInvoked = ...
-
Hi,
I've been using the RemoteInvoke functionality of WebImageViewer... and so far it's great.
But I was wondering if it is possible to define the javascript function which would handle the result? From the documentation, I can see that it is possible to use a generic function for all return values as such:
WebImageViewer1.RemoteInvoked = ...
|
|
|