| Sender |
Arvind Jain
|
| Recipient(s) |
Balamurali Balaji
|
| Date |
29 Sep 2009
|
Not Able to get the PDF Properties
|
Hello Bal,
I have an issue with reading the PDF file properties i have go through the code that you have given here bit it is not working. i am using the Visual studio 2005.
below is the my code sample
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms;
namespace WindowsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); }
private void button1_Click(object sender, EventArgs e) { PDFSHELLSERVERLib.PDFShellInfoClass pdfinfo = new PDFSHELLSERVERLib.PDFShellInfoClass(); string title, subj, author, keyword; pdfinfo.GetColumnInfo(@"C:\Inetpub\wwwroot\landlaw\docs\Westfield 10-6.pdf", out title, out subj, out author, out keyword); MessageBox.Show(title); MessageBox.Show(subj); MessageBox.Show(author); MessageBox.Show(keyword);
} } }
can you please guide us what i am doing wrong.
Thanks in advance.
Arvind.
|