How to create Pdf in windows application?
-
How to create Pdf in windows application? Please Help me thanku
Piyush Vardhan Singh p_vardhan14@rediffmail.com http://holyschoolofvaranasi.blogspot.com http://holytravelsofvaranasi.blogspot.com
-
How to create Pdf in windows application? Please Help me thanku
Piyush Vardhan Singh p_vardhan14@rediffmail.com http://holyschoolofvaranasi.blogspot.com http://holytravelsofvaranasi.blogspot.com
-
The best advice I can give you is to post in the right forum. This forum is for ASP.NET questions.
Paul Marfleet "No, his mind is not for rent To any God or government" Tom Sawyer - Rush
NO BOdy in that forum so i post Here My Dear...........
Piyush Vardhan Singh p_vardhan14@rediffmail.com http://holyschoolofvaranasi.blogspot.com http://holytravelsofvaranasi.blogspot.com
-
NO BOdy in that forum so i post Here My Dear...........
Piyush Vardhan Singh p_vardhan14@rediffmail.com http://holyschoolofvaranasi.blogspot.com http://holytravelsofvaranasi.blogspot.com
-
NO BOdy in that forum so i post Here My Dear...........
Piyush Vardhan Singh p_vardhan14@rediffmail.com http://holyschoolofvaranasi.blogspot.com http://holytravelsofvaranasi.blogspot.com
Answer::rose: Dim Filename As String = Application.StartupPath + "\Export.pdf" Dim _SaveFileDialog As New SaveFileDialog _SaveFileDialog.Filter = "Apache Files (.pdf)|.pdf" 'sss.Filter = "HTML Files (.htm)|.htm|" + _ ' "Active Server Pages (.asp)|.asp|" + _ ' "Apache Files (.pdf)|.pdf|" + _ ' "Perl Script (.pl)|.pl|" + _ ' "All Files|" _SaveFileDialog.ShowDialog() Filename = _SaveFileDialog.FileName If Windows.Forms.DialogResult.Yes Then Dim myDoc As New Document() PdfWriter.GetInstance(myDoc, New FileStream(Filename, FileMode.Create)) myDoc.Open() myDoc.Add(New Paragraph(" ")) myDoc.Add(New Paragraph("User Responses are as Follows:")) myDoc.Close() End If
Piyush Vardhan Singh p_vardhan14@rediffmail.com http://holyschoolofvaranasi.blogspot.com http://holytravelsofvaranasi.blogspot.com