[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.

Question
[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!

8.8

Windows Picture and Fax Viewer - Photo Printing Wizard - Templates

Asked by BillDL in Windows XP Operating System, Images & Photo Software, Extensible Markup Language (XML)

Tags: XML, DLL Resources, Multi-Image Printing

Hello Experts

The Windows Picture and Fax Viewer runs from the "Preview" or "Open" command for image file types:
rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen %1

When I "Preview" an image in the Windows XP (SP3 with IE7) Windows Picture and Fax Viewer, the "Print" option open the "Photo Printing Wizard".  I am pretty sure this function is built-in rather than being from one of the XP PowerToys.

Although these processes are crearly tied in with Windows Explorer, The UI elements (or most of them) for the "Photo Printing Wizard" seems to be loaded from the resources in:
%SystemRoot%\system32\photowiz.dll

Those who have used this wizard will be aware that on the 4th screen of the dialog, ie. after you are welcomed, select your image(s), and select the printer, you are offered various "templates" as "available layouts":

Full Page Fax Print
Full Page Photo Print
Contact Sheet
20 x 25cm Cutout Print
13 x 18cm Cutout Prints
10 x 15cm Cutout Prints
10 x 15cm Album Prints
9 x 13cm Cutout Prints
Wallet Prints

These templates are completely independent of any other options offered by the default printer or other virtual printers, and are loaded from the internal resources of %SystemRoot%\system32\photowiz.dll.  The bitmap images that show the various layout options are stored as separate "THUMB?x?.GIF" resources, and the actual layout used to render the prints seems to be from the resource named "TMPLDATA.XML" (template data).

I have copied out the XML code from that resource by viewing the contents of the *.DLL in "Resource Hacker", and pasted the code into the Code Snippet.

I am pretty dumb at *.XML coding.  I can understand some of it, but tend to get lost.  I can see, however, that each template layout is specified using x and y coordinates, and also width and height parameters.

I was curious to see if I could add a new layout of 6 equally sized images to the page, as this handy one isn't given as an option.  I can easily modify any of the XML code within Resource Hacker and then recompile the code, and also create a new *.gif image to try and import into the resources.  I am well used to experimenting in this way, but I don't know enough about XML to figure it out.

Looking at the XML code, does this seem possible to any experts well acquainted with XML?

Thank you
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:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
<?xml version= "1.0"?>
 
<photo-print-wizard-templates version="1.0"
                              guid="{352A15C4-1D19-4e93-AF92-D939C2812491}">
 
    <template-definitions measurements="locale-independent">
 
        <template-def guid="{2792e30d-ea79-4b3b-8ac1-4da07ae1e584}"
 
            group="Full Page Prints"
            title="Full page fax print:"
            description="centered and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="no"
            can-rotate="yes">
 
            <!-- _locID@group="Full Page Prints"-->
            <!-- _locID@title="Full page fax print:"-->
            <!-- _locID@description="centered and rotated to fit"-->
 
            <preview-image res-name="ThumbFullpage.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="-1"      y="-1"      w="-1"      h="-1"/>
                <image-def      x="-1"      y="-1"      w="-1"      h="-1"/>
            </layout>
 
        </template-def>
 
        <template-def guid="{0f275550-0a03-49ce-a07e-e3dae9d5d936}"
 
            group="Full Page Prints"
            title="Full page photo print:"
            description="cropped and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="yes">
 
            <!-- _locID@group="Full Page Prints"-->
            <!-- _locID@title="Full page photo print:"-->
            <!-- _locID@description="cropped and rotated to fit"-->
 
            <preview-image res-name="ThumbFullpage.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="-1"      y="-1"      w="-1"      h="-1"/>
                <image-def      x="-1"      y="-1"      w="-1"      h="-1"/>
            </layout>
 
        </template-def>
 
        <template-def guid="{DE1FEF65-B516-4904-97F8-DE4383A21640}"
 
            group="Contact Sheet Prints"
            title="Contact sheet:"
            description="35 prints per page"
            repeat-photos="no"
            use-thumbnails-for-printing="yes"
            print-filename="yes"
            can-crop="no"
            can-rotate="no">
 
            <!-- _locID@group="Contact Sheet Prints"-->
            <!-- _locID@title="Contact sheet:"-->
            <!-- _locID@description="40 prints per page"-->
 
            <preview-image res-name="ThumbContact.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="80000"   h="99995"/>
 
                <image-def      x="0"       y="0"       w="15000"   h="10000"/>
                <image-def      x="16250"   y="0"       w="15000"   h="10000"/>
                <image-def      x="32500"   y="0"       w="15000"   h="10000"/>
                <image-def      x="48750"   y="0"       w="15000"   h="10000"/>
                <image-def      x="65000"   y="0"       w="15000"   h="10000"/>
 
                <image-def      x="0"       y="14285"   w="15000"   h="10000"/>
                <image-def      x="16250"   y="14285"   w="15000"   h="10000"/>
                <image-def      x="32500"   y="14285"   w="15000"   h="10000"/>
                <image-def      x="48750"   y="14285"   w="15000"   h="10000"/>
                <image-def      x="65000"   y="14285"   w="15000"   h="10000"/>
 
                <image-def      x="0"       y="28570"   w="15000"   h="10000"/>
                <image-def      x="16250"   y="28570"   w="15000"   h="10000"/>
                <image-def      x="32500"   y="28570"   w="15000"   h="10000"/>
                <image-def      x="48750"   y="28570"   w="15000"   h="10000"/>
                <image-def      x="65000"   y="28570"   w="15000"   h="10000"/>
 
                <image-def      x="0"       y="42855"   w="15000"   h="10000"/>
                <image-def      x="16250"   y="42855"   w="15000"   h="10000"/>
                <image-def      x="32500"   y="42855"   w="15000"   h="10000"/>
                <image-def      x="48750"   y="42855"   w="15000"   h="10000"/>
                <image-def      x="65000"   y="42855"   w="15000"   h="10000"/>
 
                <image-def      x="0"       y="57140"   w="15000"   h="10000"/>
                <image-def      x="16250"   y="57140"   w="15000"   h="10000"/>
                <image-def      x="32500"   y="57140"   w="15000"   h="10000"/>
                <image-def      x="48750"   y="57140"   w="15000"   h="10000"/>
                <image-def      x="65000"   y="57140"   w="15000"   h="10000"/>
 
                <image-def      x="0"       y="71425"   w="15000"   h="10000"/>
                <image-def      x="16250"   y="71425"   w="15000"   h="10000"/>
                <image-def      x="32500"   y="71425"   w="15000"   h="10000"/>
                <image-def      x="48750"   y="71425"   w="15000"   h="10000"/>
                <image-def      x="65000"   y="71425"   w="15000"   h="10000"/>
 
                <image-def      x="0"       y="85710"   w="15000"   h="10000"/>
                <image-def      x="16250"   y="85710"   w="15000"   h="10000"/>
                <image-def      x="32500"   y="85710"   w="15000"   h="10000"/>
                <image-def      x="48750"   y="85710"   w="15000"   h="10000"/>
                <image-def      x="65000"   y="85710"   w="15000"   h="10000"/>
            </layout>
 
        </template-def>
 
 
    </template-definitions>
 
    <template-definitions measurements="cm">
 
        <template-def guid="{95701327-10B5-4c05-A4B7-EAA332CFCAF5}"
 
            group="20 x 25 cm. Prints"
            title="20 x 25 cm. cutout print:"
            description="cropped and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="yes">
 
            <!-- _locID@group="20 x 25 cm. Prints"-->
            <!-- _locID@title="20 x 25 cm. cutout prints:"-->
            <!-- _locID@description="cropped and rotated to fit"-->
 
            <preview-image res-name="Thumb8x10.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="78740"   h="98425"/>
                <image-def      x="0"       y="0"       w="78740"   h="98425"/>
            </layout>
        </template-def>
 
        <template-def guid="{45f74fe5-de0a-4df0-9420-18aa40033816}"
 
            group="13 x 18 cm. Prints"
            title="13 x 18 cm. cutout prints:"
            description="cropped and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="yes">
 
            <!-- _locID@group="13 x 18 cm. Prints"-->
            <!-- _locID@title="13 x 18 cm. cutout prints:"-->
            <!-- _locID@description="cropped and rotated to fit"-->
 
            <preview-image res-name="Thumb5x7.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="70866"   h="104330"/>
                <image-def      x="0"       y="0"       w="70866"   h="51181"/>
                <image-def      x="0"       y="53149"   w="70866"   h="51181"/>
            </layout>
 
        </template-def>
 
        <template-def guid="{81cb249b-e915-49ef-97b4-385e36a775eb}"
 
            group="10 x 15 cm. Prints"
            title="10 x 15 cm. cutout prints:"
            description="cropped and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="yes">
 
            <!-- _locID@group="10 x 15 cm. Prints"-->
            <!-- _locID@title="10 x 15 cm. cutout prints:"-->
            <!-- _locID@description="cropped and rotated to fit"-->
 
            <preview-image res-name="Thumb4x6.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="79725"   h="98425"/>
                <image-def      x="0"       y="0"       w="39370"   h="59055"/>
                <image-def      x="40355"   y="0"       w="39370"   h="59055"/>
                <image-def      x="10335"   y="62992"   w="59055"   h="39370"/>
            </layout>
 
        </template-def>
 
        <template-def guid="{c70660e8-7666-44f9-8813-b356cc76e6f3}"
 
            group="9 x 13 cm. Prints"
            title="9 x 13 cm. cutout prints:"
            description="cropped and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="yes">
 
            <!-- _locID@group="9 x 13 cm. Prints"-->
            <!-- _locID@title="9 x 13 cm. cutout prints:"-->
            <!-- _locID@description="cropped and rotated to fit"-->
 
            <preview-image res-name="Thumb3x5.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="72834"   h="104330"/>
                <image-def      x="0"       y="0"       w="35433"   h="51181"/>
                <image-def      x="37401"   y="0"       w="35433"   h="51181"/>
                <image-def      x="0"       y="53149"   w="35433"   h="51181"/>
                <image-def      x="37401"   y="53149"   w="35433"   h="51181"/>
            </layout>
 
        </template-def>
 
 
        <template-def guid="{1c6bce6a-236a-4ce9-b5ae-fbc097c7835b}"
 
            group="10 x 15 cm. Prints"
            title="10 x 15 cm. album prints:"
            description="cropped to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="no">
 
            <!-- _locID@group="10 x 15 cm. Prints"-->
            <!-- _locID@title="10 x 15 cm. album prints:"-->
            <!-- _locID@description="cropped to fit"-->
 
            <preview-image res-name="Thumb4x6album.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="59055"   h="86614"/>
                <image-def      x="0"       y="0"       w="59055"   h="39370"/>
                <image-def      x="0"       y="47244"   w="59055"   h="39370"/>
            </layout>
 
        </template-def>
 
        <template-def guid="{13c1f987-3af0-46a1-8378-505a8fdab269}"
 
            group="Wallet Prints"
            title="Wallet prints:"
            description="cropped and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="yes">
 
            <!-- _locID@group="Wallet Prints"-->
            <!-- _locID@title="Wallet prints:"-->
            <!-- _locID@description="cropped and rotated to fit"-->
 
            <preview-image res-name="thumbwallet.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="74408"   h="98030"/>
                <image-def      x="0"       y="0"       w="23622"   h="31496"/>
                <image-def      x="25393"   y="0"       w="23622"   h="31496"/>
                <image-def      x="50786"   y="0"       w="23622"   h="31496"/>
                <image-def      x="0"       y="33267"   w="23622"   h="31496"/>
                <image-def      x="25393"   y="33267"   w="23622"   h="31496"/>
                <image-def      x="50786"   y="33267"   w="23622"   h="31496"/>
                <image-def      x="0"       y="66534"   w="23622"   h="31496"/>
                <image-def      x="25393"   y="66534"   w="23622"   h="31496"/>
                <image-def      x="50786"   y="66534"   w="23622"   h="31496"/>
            </layout>
 
        </template-def>
 
 
    </template-definitions>
 
    <template-definitions measurements="in">
 
        <template-def guid="{7A1B143B-4E84-428c-AB41-216FE98DEFB0}"
 
            group="8 x 10 in. Prints"
            title="8 x 10 in. cutout print:"
            description="cropped and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="yes">
 
            <!-- _locID@group="8 x 10 in. Prints"-->
            <!-- _locID@title="8 x 10 in. cutout print:"-->
            <!-- _locID@description="cropped and rotated to fit"-->
 
            <preview-image res-name="Thumb8x10.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="80000"   h="100000"/>
                <image-def      x="0"       y="0"       w="80000"   h="100000"/>
            </layout>
 
        </template-def>
 
        <template-def guid="{803bf51f-afc2-4b52-8fb9-835f79fdab65}"
 
            group="5 x 7 in. Prints"
            title="5 x 7 in. cutout prints:"
            description="cropped and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="yes">
 
            <!-- _locID@group="5 x 7 in. Prints"-->
            <!-- _locID@title="5 x 7 in. cutout prints:"-->
            <!-- _locID@description="cropped and rotated to fit"-->
 
            <preview-image res-name="Thumb5x7.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="70000"   h="102500"/>
                <image-def      x="0"       y="0"       w="70000"   h="50000"/>
                <image-def      x="0"       y="52500"   w="70000"   h="50000"/>
            </layout>
 
        </template-def>
 
 
 
        <template-def guid="{63d628ff-588d-455b-951e-1694b4952574}"
 
            group="4 x 6 in. Prints"
            title="4 x 6 in. cutout prints:"
            description="cropped and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="yes">
 
            <!-- _locID@group="4 x 6 in. Prints"-->
            <!-- _locID@title="4 x 6 in. cutout prints:"-->
            <!-- _locID@description="cropped and rotated to fit"-->
 
            <preview-image res-name="Thumb4x6.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="80500"   h="103750"/>
                <image-def      x="0"       y="0"       w="40000"   h="60000"/>
                <image-def      x="40500"   y="0"       w="40000"   h="60000"/>
                <image-def      x="10500"   y="63750"   w="60000"   h="40000"/>
            </layout>
 
        </template-def>
 
        <template-def guid="{5D7FFBBE-AD55-4c87-B74D-F89570A89732}"
 
            group="3.5 x 5 in. Prints"
            title="3.5 x 5 in. cutout prints:"
            description="cropped and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="yes">
 
            <!-- _locID@group="3.5 x 5 in. Prints"-->
            <!-- _locID@title="3.5 x 5 in. cutout prints:"-->
            <!-- _locID@description="cropped and rotated to fit"-->
 
            <preview-image res-name="Thumb3x5.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="72500"   h="102500"/>
                <image-def      x="0"       y="0"       w="35000"   h="50000"/>
                <image-def      x="37500"   y="0"       w="35000"   h="50000"/>
                <image-def      x="0"       y="52500"   w="35000"   h="50000"/>
                <image-def      x="37500"   y="52500"   w="35000"   h="50000"/>
            </layout>
 
        </template-def>
 
        <template-def guid="{DE4A3762-F69D-43f3-B2EF-0723B934458F}"
 
            group="4 x 6 in. Prints"
            title="4 x 6 in. album prints:"
            description="cropped to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="no">
 
            <!-- _locID@group="4 x 6 in. Prints"-->
            <!-- _locID@title="4 x 6 in. album prints:"-->
            <!-- _locID@description="cropped to fit"-->
 
            <preview-image res-name="Thumb4x6album.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="60000"   h="85000"/>
                <image-def      x="0"       y="0"       w="60000"   h="40000"/>
                <image-def      x="0"       y="45000"   w="60000"   h="40000"/>
            </layout>
 
        </template-def>
 
        <template-def guid="{ac4fb6e0-81a0-47f7-a633-5c9dc987deeb}"
 
            group="Wallet Prints"
            title="Wallet prints:"
            description="cropped and rotated to fit"
            repeat-photos="no"
            use-thumbnails-for-printing="no"
            print-filename="no"
            can-crop="yes"
            can-rotate="yes">
 
            <!-- _locID@group="Wallet Prints"-->
            <!-- _locID@title="Wallet prints:"-->
            <!-- _locID@description="cropped and rotated to fit"-->
 
            <preview-image res-name="thumbwallet.gif" res-type="HTML" res-module="photowiz.dll"/>
 
            <layout>
                <imageable-area x="0"       y="0"       w="77500"   h="100000"/>
                <image-def      x="0"       y="0"       w="25000"   h="32500"/>
                <image-def      x="26250"   y="0"       w="25000"   h="32500"/>
                <image-def      x="52500"   y="0"       w="25000"   h="32500"/>
                <image-def      x="0"       y="33750"   w="25000"   h="32500"/>
                <image-def      x="26250"   y="33750"   w="25000"   h="32500"/>
                <image-def      x="52500"   y="33750"   w="25000"   h="32500"/>
                <image-def      x="0"       y="67500"   w="25000"   h="32500"/>
                <image-def      x="26250"   y="67500"   w="25000"   h="32500"/>
                <image-def      x="52500"   y="67500"   w="25000"   h="32500"/>
            </layout>
 
        </template-def>
 
 
    </template-definitions>
 
</photo-print-wizard-templates>
[+][-]03/23/09 06:54 AM, ID: 23957616Accepted Solution

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: Windows XP Operating System, Images & Photo Software, Extensible Markup Language (XML)
Tags: XML, DLL Resources, Multi-Image Printing
Sign Up Now!
Solution Provided By: sirbounty
Participating Experts: 1
Solution Grade: A
 
[+][-]03/22/09 06:18 AM, ID: 23951400Author Comment

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.

 
[+][-]03/22/09 06:39 AM, ID: 23951456Author Comment

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.

 
[+][-]03/23/09 08:18 AM, ID: 23958583Author Comment

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.

 
[+][-]03/23/09 08:25 AM, ID: 23958671Expert Comment

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.

 
[+][-]03/23/09 08:59 AM, ID: 23959122Author Comment

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.

 
[+][-]03/23/09 09:12 AM, ID: 23959291Expert Comment

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.

 
[+][-]03/23/09 09:21 AM, ID: 23959403Author Comment

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.

 
[+][-]03/28/09 07:54 PM, ID: 24011247Author Comment

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.

 
[+][-]03/28/09 08:00 PM, ID: 24011268Author Comment

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.

 
[+][-]03/28/09 08:02 PM, ID: 24011276Author Comment

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.

 
[+][-]03/28/09 08:06 PM, ID: 24011286Expert Comment

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.

 
[+][-]03/28/09 08:42 PM, ID: 24011353Author Comment

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.

 
[+][-]03/28/09 08:48 PM, ID: 24011365Expert Comment

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.

 
[+][-]03/28/09 11:52 PM, ID: 24011672Author Comment

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.

 
[+][-]03/30/09 07:42 AM, ID: 24019413Expert Comment

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...
20091111-EE-VQP-92 - Hierarchy / EE_QW_EXPERT_20070906