[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

10/26/2009 at 05:39PM PDT, ID: 24845759
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.1

Object required

Asked by GrahamSkan in FrontPage-Expressions, Internet Protocols, Microsoft Applications

Tags: FrontPage

I am very new to Web development, but very VB, and am trying to display a full-sized image via a click on a thumbnail.

The code displays the thumbnail image. I hope to see the full-sized image when I click on it, but I get an 'Object expected' error on this line:

onclick="goImgWin('J:\My Pictures\Photos\2009\2009_1010\JustInCase\2009_1010_110417.jpg',240,302,100,50);return false;"><img
 
There are two pages in the code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
Page: new_page_.htm
 
<html>
 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
 
</head>
 
<body>
<table cellpadding="0" cellspacing="10" width="100%">
<!-- MSTableType="layout" -->
 
<!-- THIS BEGINS THE FIRST TABLE ROW. -->
<tr align="left">
 
	<!-- TD DEFINES A TABLE CELL (TABLEDATA). -->
	<td valign="bottom" width="25%">
	
	<a href="J:\My Pictures\Photos\2009\2009_1010\JustInCase/2009_1010_110417.jpg" target="_blank"
onclick="goImgWin('J:\My Pictures\Photos\2009\2009_1010\JustInCase\2009_1010_110417.jpg',240,302,100,50);return false;"><img
src="J:\My Pictures\Photos\2009\2009_1010\JustInCase\ThumbNails/2009_1010_110417.jpg" width="57" height="72" border="1"
alt="Picture1" align="left" /></a>
 
	</td>
	<!-- THE END OF THE TABLE CELL -->
 
	<!-- 1) TO CREATE MORE COLUMNS, COPY THE TABLEDATA BLOCK ABOVE. -->
	<!--    PASTE IT HERE AS MANY TIMES AS NEEDED. -->
	<!--    THAT WILL CREATE ADDITIONAL COLUMNS IN THE FIRST ROW. -->
 
</tr>
<!-- END OF THE FIRST TABLE ROW -->
 
<!-- THIS BEGINS THE SECOND TABLE ROW. -->
<tr align="left">
 
	<!-- THESE TABLE CELLS (TABLEDATA) ARE THE PHOTO CAPTIONS. -->
	<td valign="top" width="25%">Caption.</td>
	<!-- END OF THE TABLE CELL -->
 
	<!-- 2) ALSO COPY THE TABLEDATA BLOCK ABOVE, -->
	<!--    AND PASTE IT HERE THE SAME NUMBER OF TIMES, -->
	<!--    SO YOU HAVE THE SAME NUMBER OF CAPTION CELLS AS PHOTO CELLS. -->
 
</tr>
<!-- END OF THE SECOND TABLE ROW -->
 
<!-- 3) THEN, TO CREATE MORE ROWS, COPY BOTH ENTIRE ROWS ABOVE. -->
<!--    (everything from "THIS BEGINS THE FIRST TABLE ROW" -->
<!--     to "END OF THE SECOND TABLE ROW") -->
<!--    PASTE THEM HERE AS MANY TIMES AS NEEDED. -->
<!--    THAT WILL CREATE ADDITIONAL ROWS IN THE TABLE. -->
 
</table>
 
 
</body>
 
</html>
'another page
<html>
 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 2</title>
<script type="text/javascript">
function goImgWin(myImage,myWidth,myHeight,origLeft,origTop) {
myHeight += 24;
myWidth += 24;
TheImgWin = window.open(myImage,'image','height=' +
myHeight + ',width=' + myWidth +
',toolbar=no,directories=no,status=no,' +
'menubar=no,scrollbars=no,resizable=no');
TheImgWin.moveTo(origLeft,origTop);
TheImgWin.focus();
}
</script>
 
</head>
 
<body>
 
</body>
 
</html>
[+][-]10/26/09 05:43 PM, ID: 25668398

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/26/09 06:20 PM, ID: 25668517

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/27/09 05:33 AM, ID: 25671645

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: FrontPage-Expressions, Internet Protocols, Microsoft Applications
Tags: FrontPage
Sign Up Now!
Solution Provided By: gardavis
Participating Experts: 1
Solution Grade: A
 
 
[+][-]10/27/09 01:11 PM, ID: 25676894

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/27/09 02:15 PM, ID: 25677604

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/27/09 03:09 PM, ID: 25678166

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/27/09 03:35 PM, ID: 25678457

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20090824-EE-VQP-74 - Hierarchy / EE_QW_3_20080625