very niceamazingphoto1
very nice
More advanced color creation using RGB, alpha and web color settings
Creates a Color structure from the specified 8-bit color values (red, green, and blue). The alpha value is implicitly 255 (no transparency).[C#] Color myColor = Color.FromArgb(0, 255,125);
[Visual Basic]
Dim myColor As Color = Color.FromArgb(0, 255,125)
Creates a Color structure from the four ARGB component (alpha, red, green, and blue). Alpha is also known as transparency where 255 is totally solid and 0 is totally transparent.[C#]Color myColor = FromArgb(120, 0, 255,125);
[Visual Basic]
Dim myColor As Color = FromArgb(120, 0, 255,125)
Creates a Color from a 32-bit ARGB value. (alpha, red, green, and blue)[C#]Color myColor = Color.FromArgb(0x78FF0000);
[Visual Basic]
Dim myColor As Color = Color.FromArgb(&H78FF0000)
Creates a Color from the specified Color Name, but with the new specified alpha value, valid alpha values are between 0 through 255.[C#]Color myColor = Color.FromArgb(125,Color.Red);
[Visual Basic]
Dim myColor As Color = Color.FromArgb(125,Color.Red)
For converting a web color:If the color is "bgcolor="#388B7E" , replace # with 0x(for csharp) or &H (for visual basic), and add an alpha value between 0-7F after that, then add the rest. (0x7F388B7E or &H7F388B7E)[C#]Color myColor = Color.FromArgb(0x7F388B7E);
[Visual Basic]
Dim myColor As Color = Color.FromArgb(&H7F388B7E)
[Visual Basic]
Dim myColor As Color = Color.FromArgb(0, 255,125)
Creates a Color structure from the four ARGB component (alpha, red, green, and blue). Alpha is also known as transparency where 255 is totally solid and 0 is totally transparent.[C#]Color myColor = FromArgb(120, 0, 255,125);
[Visual Basic]
Dim myColor As Color = FromArgb(120, 0, 255,125)
Creates a Color from a 32-bit ARGB value. (alpha, red, green, and blue)[C#]Color myColor = Color.FromArgb(0x78FF0000);
[Visual Basic]
Dim myColor As Color = Color.FromArgb(&H78FF0000)
Creates a Color from the specified Color Name, but with the new specified alpha value, valid alpha values are between 0 through 255.[C#]Color myColor = Color.FromArgb(125,Color.Red);
[Visual Basic]
Dim myColor As Color = Color.FromArgb(125,Color.Red)
For converting a web color:If the color is "bgcolor="#388B7E" , replace # with 0x(for csharp) or &H (for visual basic), and add an alpha value between 0-7F after that, then add the rest. (0x7F388B7E or &H7F388B7E)[C#]Color myColor = Color.FromArgb(0x7F388B7E);
[Visual Basic]
Dim myColor As Color = Color.FromArgb(&H7F388B7E)
very nice
Introduction
This document describes how to add the .netCHARTING control to various versions of Visual Studio toolbox.
Visual Studio 2002 & 2003:
Right-Click on the toolbox > Add/Remove Items
Select the .net Framework Components tab
If the server version is installed, the component will be listed in the list box. Otherwise, click browse and select the .netCHARTING dll.
Click Ok to finish.
If the error "The format of the file 'dotnetcharting' is invalid." occurs. This means the dll being added is a .net 2.0 assembly. To resolve this issue, the .net 1.x version of the bundle must be downloaded and used instead.
Visual Studio 2005 & Express editions.
Right-Click on the toolbox > Choose Items
Select the .net Framework Components tab
If the server version is installed, the component will be listed in the list box. Otherwise, click browse and select the .netCHARTING dll.
Click Ok to finish.
Web Matrix
Select "Custom Controls" tab of the toolbox.
Right-Click on the custom controls tab and select "Add Local Toolbox Components..."
Click "Browse..."
Navigate to the location of the dotnetcharting.dll file, select it and click ok.
Finally click ok at the "Select Components" popup.
When the "Install to GAC" popup appears, click no.
Visual Studio 2002 & 2003:
Right-Click on the toolbox > Add/Remove Items
Select the .net Framework Components tab
If the server version is installed, the component will be listed in the list box. Otherwise, click browse and select the .netCHARTING dll.
Click Ok to finish.
If the error "The format of the file 'dotnetcharting' is invalid." occurs. This means the dll being added is a .net 2.0 assembly. To resolve this issue, the .net 1.x version of the bundle must be downloaded and used instead.
Visual Studio 2005 & Express editions.
Right-Click on the toolbox > Choose Items
Select the .net Framework Components tab
If the server version is installed, the component will be listed in the list box. Otherwise, click browse and select the .netCHARTING dll.
Click Ok to finish.
Web Matrix
Select "Custom Controls" tab of the toolbox.
Right-Click on the custom controls tab and select "Add Local Toolbox Components..."
Click "Browse..."
Navigate to the location of the dotnetcharting.dll file, select it and click ok.
Finally click ok at the "Select Components" popup.
When the "Install to GAC" popup appears, click no.
very nice
Common Problems and Resolutions:
When I start the WebApplication from Visual Studio I get Empty page. Cause: The database folder does not exist in you project folder. When I start the WebApplication from Visual Studio I get "CreateControl: generic error occurred in GDI+". Cause: the Temp folder does not exist or does not have Write permissions. Error in reading Database Cause: ConnectionString property is not pointing to right path for the database. When I drag and drop Chart control from Toolbox to Form , I get "error in CreateChildControl" Solution: Add a reference to dotnetCHARTING.dll and under the References node in Solution Explorer. I do not see the Chart Control in Toolbox. Solution: Select Customize Toolbox from Tools menu and then add the dll to Toolbox or right-click on the tool box > Add/Remove Items > .net tab > browse to the dll > click OK.
Design Time Support: The Chart control can used in design time in Visual Studio .NET (or web matrix). You can use this control in an ASP.NET web Application (not in desktop or winforms applications) As with any other control first you should add it to the Toolbox as follows:
From Tools menu option select "Customize Toolbox" then browse and select the dotnetCharting.dll assembly and click OK.
You will now see the chart control listed in the toolboxTool
You may now drag and drop the chart into the aspx page and use it.
You can use the Properties browser to see all chart control properties, and any changes when made on any properties, related code will be generated in code behind file in InitializeComponent() method, you can also write your own code, overriding any properties in the Page_load section or any part of file as you please.
Design Time Support: The Chart control can used in design time in Visual Studio .NET (or web matrix). You can use this control in an ASP.NET web Application (not in desktop or winforms applications) As with any other control first you should add it to the Toolbox as follows:
From Tools menu option select "Customize Toolbox" then browse and select the dotnetCharting.dll assembly and click OK.
You will now see the chart control listed in the toolboxTool
You may now drag and drop the chart into the aspx page and use it.
You can use the Properties browser to see all chart control properties, and any changes when made on any properties, related code will be generated in code behind file in InitializeComponent() method, you can also write your own code, overriding any properties in the Page_load section or any part of file as you please.
very nice
Installation Instructions:
Create new project, ASP.NET Web Application.
Copy the Database folder from the .netCHARTING bundle into your project root ( for example in c:\inetpub\wwwroot\webApplication)
Copy dotnetCHARTING.dll to the bin folder within your web application (like you did for the database in step 2)
Add a reference to dotnetCHARTING.dll under the References node in Solution Explorer.
Select Customize Toolbox from Tools menu and then add the dll to Toolbox or right-click on the tool box > Add/Remove Items > .net tab > browse to the dll > click OK. For more information, see this article.
Copy and Paste the code from any of the .netCHARTING samples included in the bundle to your aspx page (you can delete any default html code which has been created through Visual Studio .NET wizard)
Create a Temp folder in the project path same as step 2 or 3 and modify the permissions to have write access (See installation for more information).
Make sure the path for database is set correctly.
When you start the project you should see a chart based on the sample code you added.
Copy the Database folder from the .netCHARTING bundle into your project root ( for example in c:\inetpub\wwwroot\webApplication)
Copy dotnetCHARTING.dll to the bin folder within your web application (like you did for the database in step 2)
Add a reference to dotnetCHARTING.dll under the References node in Solution Explorer.
Select Customize Toolbox from Tools menu and then add the dll to Toolbox or right-click on the tool box > Add/Remove Items > .net tab > browse to the dll > click OK. For more information, see this article.
Copy and Paste the code from any of the .netCHARTING samples included in the bundle to your aspx page (you can delete any default html code which has been created through Visual Studio .NET wizard)
Create a Temp folder in the project path same as step 2 or 3 and modify the permissions to have write access (See installation for more information).
Make sure the path for database is set correctly.
When you start the project you should see a chart based on the sample code you added.
very nice
Differences from the WebForms version:
The winforms Chart control is inherited from System.Windows.Forms.userControl and you have access to all events,properties and methods of UserControl in addition to the full .netCHARTING object model.
Width and Height properties are "int" type versus WebControl which are Unit type.
HitTest method. This method accepts the X,Y position on the chart image and returns the corresponding object for that point of the Image. These are 3 overloaded methods for HitTest method: [C#]
HitTestInfo myObj = HitTest(x,y);[Visual Basic]
HitTestInfo myObj = HitTest(x,y)x,y are int and represent the point you want to get the related object from. [C#]
HitTestInfo myObj = HitTest(myPoint);[Visual Basic]
HitTestInfo myObj = HitTest(myPoint)myPoint is "Point" type and represents the point you want to get the related object from.[C#]
HitTestInfo myObj = HitTest();[Visual Basic]
HitTestInfo myObj = HitTest()If you do not pass the cursor position, internally this method uses the position from the Chart control. This usage would be applicable when using the winforms control in a winforms project.Currently, the HitTestInfo Class has one property called "Object". It will hold the object clicked and can be used for drilldown or other advanced integration with the chart in a winforms environment.
When you use Object.URL properties, such as Element.URL when you click on the Element, a new browser window will be launched with the URL value specified. URL target has no effect in a winforms environment.
Width and Height properties are "int" type versus WebControl which are Unit type.
HitTest method. This method accepts the X,Y position on the chart image and returns the corresponding object for that point of the Image. These are 3 overloaded methods for HitTest method: [C#]
HitTestInfo myObj = HitTest(x,y);[Visual Basic]
HitTestInfo myObj = HitTest(x,y)x,y are int and represent the point you want to get the related object from. [C#]
HitTestInfo myObj = HitTest(myPoint);[Visual Basic]
HitTestInfo myObj = HitTest(myPoint)myPoint is "Point" type and represents the point you want to get the related object from.[C#]
HitTestInfo myObj = HitTest();[Visual Basic]
HitTestInfo myObj = HitTest()If you do not pass the cursor position, internally this method uses the position from the Chart control. This usage would be applicable when using the winforms control in a winforms project.Currently, the HitTestInfo Class has one property called "Object". It will hold the object clicked and can be used for drilldown or other advanced integration with the chart in a winforms environment.
When you use Object.URL properties, such as Element.URL when you click on the Element, a new browser window will be launched with the URL value specified. URL target has no effect in a winforms environment.
very nice
.netCHARTING Winforms Support
A winforms version has been released in conjunction with .netCHARTING 3.0. This enables usage outside of a web environment and in desktop applications. The winforms bundle (dotnetchartingwinforms.zip) contains a separate assembly dotnetcharting.winforms.dll.
The winforms control will not function in a web environment. In addition, the web version (dotnetcharting.dll) will not function outside of a web environment.
If you are already familiar with .netCHARTING the winforms version will also be familiar. When you run the provided sample application (dotnetchartingsamples.exe) you will discover the code for various charts is identical. This application provides an interface for viewing different charts along with the source for each in C# and VB.NET. You can also print the source listing or copy it to the clipboard for subsequent use.
The winforms control will not function in a web environment. In addition, the web version (dotnetcharting.dll) will not function outside of a web environment.
If you are already familiar with .netCHARTING the winforms version will also be familiar. When you run the provided sample application (dotnetchartingsamples.exe) you will discover the code for various charts is identical. This application provides an interface for viewing different charts along with the source for each in C# and VB.NET. You can also print the source listing or copy it to the clipboard for subsequent use.
very nice
acrofnt08.lst
%!Adobe-FontList 1.11
%Locale:0x409
%BeginFont
Handler:DirectoryHandler
FontType:CMap
CMapName:Identity-H
Registry:Adobe
Ordering:Identity
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\CMap\Identity-H
FileLength:6716
FileModTime:971075690
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:CMap
CMapName:Identity-V
Registry:Adobe
Ordering:Identity
UseCMap:Identity-H
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\CMap\Identity-V
FileLength:1249
FileModTime:971075690
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:AdobeSerifMM
FamilyName:Adobe Serif MM
StyleName:Regular
FullName:Adobe Serif MM
MenuName:Adobe Serif MM
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\ZY______.PFB
DataFormat:Plain
MMAxisName:Weight
MMAxisName:Width
UsesStandardEncoding:yes
isCFF:no
FileLength:96418
FileModTime:924077814
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:AdobeSansMM
FamilyName:Adobe Sans MM
StyleName:Regular
FullName:Adobe Sans MM
MenuName:Adobe Sans MM
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\ZX______.PFB
DataFormat:Plain
MMAxisName:Weight
MMAxisName:Width
UsesStandardEncoding:yes
isCFF:no
FileLength:75573
FileModTime:924077814
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:AdobePiStd
FamilyName:Adobe Pi Std
StyleName:Regular
FullName:Adobe Pi Std
MenuName:Adobe Pi Std
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\AdobePiStd.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:89660
FileModTime:1161525208
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:Symbol
FamilyName:Symbol
StyleName:Regular
FullName:Symbol
MenuName:Symbol
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\SY______.PFB
DataFormat:Plain
UsesStandardEncoding:no
isCFF:no
FileLength:34705
FileModTime:924077814
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:CourierStd
FamilyName:Courier Std
StyleName:Medium
FullName:Courier Std Medium
MenuName:Courier Std
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\CourierStd.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:35448
FileModTime:1161525208
WeightClass:500
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:CourierStd-BoldOblique
FamilyName:Courier Std
StyleName:Bold Oblique
FullName:Courier Std Bold Oblique
MenuName:Courier Std
StyleBits:3
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\CourierStd-BoldOblique.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:36496
FileModTime:1161525208
WeightClass:700
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:CourierStd-Bold
FamilyName:Courier Std
StyleName:Bold
FullName:Courier Std Bold
MenuName:Courier Std
StyleBits:2
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\CourierStd-Bold.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:35188
FileModTime:1161525208
WeightClass:700
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:CourierStd-Oblique
FamilyName:Courier Std
StyleName:Medium Oblique
FullName:Courier Std Medium Oblique
MenuName:Courier Std
StyleBits:1
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\CourierStd-Oblique.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:36824
FileModTime:1161525208
WeightClass:500
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MyriadPro-It
FamilyName:Myriad Pro
StyleName:Italic
FullName:Myriad Pro Italic
MenuName:Myriad Pro
StyleBits:1
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MyriadPro-It.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:100252
FileModTime:1119265582
WeightClass:400
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MyriadPro-BoldIt
FamilyName:Myriad Pro
StyleName:Bold Italic
FullName:Myriad Pro Bold Italic
MenuName:Myriad Pro
StyleBits:3
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MyriadPro-BoldIt.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:101512
FileModTime:1119265582
WeightClass:700
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MyriadPro-Bold
FamilyName:Myriad Pro
StyleName:Bold
FullName:Myriad Pro Bold
MenuName:Myriad Pro
StyleBits:2
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MyriadPro-Bold.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:96484
FileModTime:1119265582
WeightClass:700
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MinionPro-Regular
FamilyName:Minion Pro
StyleName:Regular
FullName:Minion Pro
MenuName:Minion Pro
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MinionPro-Regular.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:205608
FileModTime:1119265582
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MinionPro-It
FamilyName:Minion Pro
StyleName:Italic
FullName:Minion Pro Italic
MenuName:Minion Pro
StyleBits:1
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MinionPro-It.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:250708
FileModTime:1119265582
WeightClass:400
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MinionPro-BoldIt
FamilyName:Minion Pro
StyleName:Bold Italic
FullName:Minion Pro Bold Italic
MenuName:Minion Pro
StyleBits:3
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MinionPro-BoldIt.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:250828
FileModTime:1119265582
WeightClass:700
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MinionPro-Bold
FamilyName:Minion Pro
StyleName:Bold
FullName:Minion Pro Bold
MenuName:Minion Pro
StyleBits:2
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MinionPro-Bold.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:210112
FileModTime:1119265582
WeightClass:700
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MyriadPro-Regular
FamilyName:Myriad Pro
StyleName:Regular
FullName:Myriad Pro
MenuName:Myriad Pro
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MyriadPro-Regular.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:94884
FileModTime:1119265582
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:PFM
FontName:AdobeSerifMM
NumMMAxes:0
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\PFM\zy______.pfm
FileLength:684
FileModTime:924077814
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:PFM
FontName:AdobeSansMM
NumMMAxes:0
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\PFM\zx______.pfm
FileLength:683
FileModTime:924077814
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:PFM
FontName:Symbol
NumMMAxes:0
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\PFM\SY______.PFM
FileLength:672
FileModTime:924077814
%EndFont
%Locale:0x409
%BeginFont
Handler:DirectoryHandler
FontType:CMap
CMapName:Identity-H
Registry:Adobe
Ordering:Identity
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\CMap\Identity-H
FileLength:6716
FileModTime:971075690
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:CMap
CMapName:Identity-V
Registry:Adobe
Ordering:Identity
UseCMap:Identity-H
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\CMap\Identity-V
FileLength:1249
FileModTime:971075690
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:AdobeSerifMM
FamilyName:Adobe Serif MM
StyleName:Regular
FullName:Adobe Serif MM
MenuName:Adobe Serif MM
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\ZY______.PFB
DataFormat:Plain
MMAxisName:Weight
MMAxisName:Width
UsesStandardEncoding:yes
isCFF:no
FileLength:96418
FileModTime:924077814
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:AdobeSansMM
FamilyName:Adobe Sans MM
StyleName:Regular
FullName:Adobe Sans MM
MenuName:Adobe Sans MM
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\ZX______.PFB
DataFormat:Plain
MMAxisName:Weight
MMAxisName:Width
UsesStandardEncoding:yes
isCFF:no
FileLength:75573
FileModTime:924077814
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:AdobePiStd
FamilyName:Adobe Pi Std
StyleName:Regular
FullName:Adobe Pi Std
MenuName:Adobe Pi Std
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\AdobePiStd.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:89660
FileModTime:1161525208
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:Symbol
FamilyName:Symbol
StyleName:Regular
FullName:Symbol
MenuName:Symbol
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\SY______.PFB
DataFormat:Plain
UsesStandardEncoding:no
isCFF:no
FileLength:34705
FileModTime:924077814
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:CourierStd
FamilyName:Courier Std
StyleName:Medium
FullName:Courier Std Medium
MenuName:Courier Std
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\CourierStd.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:35448
FileModTime:1161525208
WeightClass:500
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:CourierStd-BoldOblique
FamilyName:Courier Std
StyleName:Bold Oblique
FullName:Courier Std Bold Oblique
MenuName:Courier Std
StyleBits:3
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\CourierStd-BoldOblique.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:36496
FileModTime:1161525208
WeightClass:700
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:CourierStd-Bold
FamilyName:Courier Std
StyleName:Bold
FullName:Courier Std Bold
MenuName:Courier Std
StyleBits:2
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\CourierStd-Bold.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:35188
FileModTime:1161525208
WeightClass:700
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:CourierStd-Oblique
FamilyName:Courier Std
StyleName:Medium Oblique
FullName:Courier Std Medium Oblique
MenuName:Courier Std
StyleBits:1
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\CourierStd-Oblique.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:36824
FileModTime:1161525208
WeightClass:500
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MyriadPro-It
FamilyName:Myriad Pro
StyleName:Italic
FullName:Myriad Pro Italic
MenuName:Myriad Pro
StyleBits:1
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MyriadPro-It.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:100252
FileModTime:1119265582
WeightClass:400
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MyriadPro-BoldIt
FamilyName:Myriad Pro
StyleName:Bold Italic
FullName:Myriad Pro Bold Italic
MenuName:Myriad Pro
StyleBits:3
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MyriadPro-BoldIt.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:101512
FileModTime:1119265582
WeightClass:700
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MyriadPro-Bold
FamilyName:Myriad Pro
StyleName:Bold
FullName:Myriad Pro Bold
MenuName:Myriad Pro
StyleBits:2
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MyriadPro-Bold.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:96484
FileModTime:1119265582
WeightClass:700
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MinionPro-Regular
FamilyName:Minion Pro
StyleName:Regular
FullName:Minion Pro
MenuName:Minion Pro
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MinionPro-Regular.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:205608
FileModTime:1119265582
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MinionPro-It
FamilyName:Minion Pro
StyleName:Italic
FullName:Minion Pro Italic
MenuName:Minion Pro
StyleBits:1
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MinionPro-It.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:250708
FileModTime:1119265582
WeightClass:400
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MinionPro-BoldIt
FamilyName:Minion Pro
StyleName:Bold Italic
FullName:Minion Pro Bold Italic
MenuName:Minion Pro
StyleBits:3
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MinionPro-BoldIt.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:250828
FileModTime:1119265582
WeightClass:700
WidthClass:5
AngleClass:1
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MinionPro-Bold
FamilyName:Minion Pro
StyleName:Bold
FullName:Minion Pro Bold
MenuName:Minion Pro
StyleBits:2
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MinionPro-Bold.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:210112
FileModTime:1119265582
WeightClass:700
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:Type1
FontName:MyriadPro-Regular
FamilyName:Myriad Pro
StyleName:Regular
FullName:Myriad Pro
MenuName:Myriad Pro
StyleBits:0
WritingScript:Roman
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\MyriadPro-Regular.otf
DataFormat:sfntData
UsesStandardEncoding:yes
isCFF:yes
FileLength:94884
FileModTime:1119265582
WeightClass:400
WidthClass:5
AngleClass:0
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:PFM
FontName:AdobeSerifMM
NumMMAxes:0
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\PFM\zy______.pfm
FileLength:684
FileModTime:924077814
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:PFM
FontName:AdobeSansMM
NumMMAxes:0
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\PFM\zx______.pfm
FileLength:683
FileModTime:924077814
%EndFont
%BeginFont
Handler:DirectoryHandler
FontType:PFM
FontName:Symbol
NumMMAxes:0
OutlineFileName:C:\Program Files\Adobe\Reader 8.0\Resource\Font\PFM\SY______.PFM
FileLength:672
FileModTime:924077814
%EndFont
Subscribe to:
Posts (Atom)