Ask a Question related to ASP, Design and Development.
-
amita #1
Open Image in 'Kodak Image Edit Control' with web browser.
hi,
1.I want to show a image file of type '.tif' in the browser window;
for that I'm writting as ASP code page.
2.This '.tif' type image can be shown better with 'Kodak Image
Control'.
3.To have this 'Kodak Image Control' on my code page I just add it's
..ocx to tool box and then drag it from 'Toolbox' to the page.
4.Now after dropping this control to the code it's type is getting
changed to 'object' instead of type 'ImgEdit'(and I think this is the
reason I don't get correct result).
5.On one button's 'Onclick' event I'm calling a javascript function
with which I'm setting a 'Path'and'Display' property of a control.
6.And want to show a image at location --
'..\MF\\TDRCMF9\196\85173-62.tif'
which get shown in new browser window but could not get shown in that
particular control. That means the path is correct, then what is the
problem?
For better understanding of problem I'm pasting a following code which
I've tried up till now......
.................................................. ................
<%@ Language=VBScript %>
<% OPTION EXPLICIT %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<SCRIPT LANGUAGE=javascript>
<!--
function showpic()
{
var path;
path = document.frmtif.path.value;
alert(path);
document.frmtif.ImgEdit1.Image =path;
document.frmtif.ImgEdit1.Display;
window.parent.self.open(path);
}
//-->
</script>
</HEAD>
<BODY bgColor=#ffe4e1>
<form name="frmtif">
The Image
<P>
<OBJECT id=ImgEdit1 style="WIDTH: 409px; HEIGHT: 218px" type="ImgEdit"
align=left
border=1 classid=clsid:6D940280-9F11-11CE-83FD-02608C3EC08A
name=imgtif></OBJECT>
<input type="hidden" name="path"
value="..\MF\\TDRCMF9\196\85173-62.tif">
<input type="button" name="show" value="Show" onclick="showpic();">
</P>
</form>
</BODY>
</HTML>
.................................................. ................
Thanks in advance,
Amita....
amita Guest
-
Resize Bitmap image in image control in flex3
I am loading an image in image control initially. Then I am applying color transform to that image and want to load that bitmap image in flex3. That... -
problem with image url browser button inside control colection designer?!??
I have this situation: 1) server CustomControl MyControl inherited from WebControl 2) child controls collection is of inherited ImageButton type... -
Image Browser
Hi!! I´m lost in lingo world... I´m trying to create a image browser with four files and five columns of thumbnails, showing 20 images. I need to... -
JS for browser image bar
I need to block the image icon bar that apears on rollover of an image. I'm sure I could find the Javascript online I may have my terminology wrong... -
How do I edit a pdf image in PS7
I am working through a Acrobat 5.0 Classroom in a book and there is a part where I am supposed to edit an image by automatically opening it in PS "if...



Reply With Quote

