Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > Avalon

Vista - XPS - WPF Guru's Please Help!

 
 
Old 11-22-2006   #1 (permalink)
Sir C4


 
 

XPS - WPF Guru's Please Help!

Can anyone provide a c# example of how I can copy / reuse XPS
resources? In creating a "template" system, I'm trying to: 1) read an
XPS document; 2) replace place-holder text with actual text; 3) write
new XPS document.

My works so far leave an XPS document that when opened gives the error
"AddFontResourceEx failed"

Any help would greatly be appreciated.


My System SpecsSystem Spec
Old 12-10-2006   #2 (permalink)
Chad Z. Hower


 
 

Re: XPS - WPF Guru's Please Help!

Sir C4 wrote:
> Can anyone provide a c# example of how I can copy / reuse XPS
> resources? In creating a "template" system, I'm trying to: 1) read an
> XPS document; 2) replace place-holder text with actual text; 3) write
> new XPS document.


It this of any use? Its from the Vista Launch material:

pkg = Package.Open(stm);
foreach (PackagePart part in pkg.GetParts())
{
Debug.WriteLine(part.Uri + " (" +
part.ContentType + ")");
if (part.ContentType == "image/png")
{
using (Stream imgStream = part.GetStream())
{
Image img = new Image();
BitmapImage bmp = new BitmapImage();
bmp.BeginInit();
bmp.StreamSource = imgStream;
bmp.EndInit();

img.Source = bmp;
img.MaxWidth = 200;

imagesList.Items.Add(img);
}
}
}


--
Chad Z. Hower
Microsoft Regional Director
"Programming is an art form that fights back"
http://www.KudzuWorld.com/
Need a professional technical speaker at your event?
http://www.woo-hoo.net
My System SpecsSystem Spec
 

Thread Tools


Similar Threads
Thread Forum
A call for help from the PC guru's out there... General Discussion
Imaging a Vista Installation - Question for the guru's - imagex Vista installation & setup
Win XP, OS X x86, Vista 5365 - How to install them all? BCDEdit guru's out there? Vista General
Win XP, OS X x86, Vista 5365 - How to install them all? BCDEdit guru's out there? Vista installation & setup


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

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