Click here to Skip to main content
15,886,095 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Download folder Pin
N a v a n e e t h31-Mar-08 20:47
N a v a n e e t h31-Mar-08 20:47 
QuestionPREVENTING the "BACK" process?? [modified] Pin
John Sundar31-Mar-08 19:22
John Sundar31-Mar-08 19:22 
GeneralRe: PREVENTING the "BACK" process?? Pin
sagittarian3-Apr-08 8:12
sagittarian3-Apr-08 8:12 
QuestionHow to create Pdf in windows application? Pin
Piyush Vardhan Singh31-Mar-08 19:21
Piyush Vardhan Singh31-Mar-08 19:21 
AnswerRe: How to create Pdf in windows application? Pin
pmarfleet31-Mar-08 19:42
pmarfleet31-Mar-08 19:42 
GeneralRe: How to create Pdf in windows application? Pin
Piyush Vardhan Singh31-Mar-08 20:34
Piyush Vardhan Singh31-Mar-08 20:34 
GeneralRe: How to create Pdf in windows application? Pin
Martin Jose31-Mar-08 21:02
Martin Jose31-Mar-08 21:02 
GeneralRe: How to create Pdf in windows application? Pin
Piyush Vardhan Singh31-Mar-08 23:17
Piyush Vardhan Singh31-Mar-08 23:17 
Answer:Rose | [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



Generalvalidation group in Wizard1 SideBarButtonClick Pin
Rajesh_K_Sharma31-Mar-08 14:34
Rajesh_K_Sharma31-Mar-08 14:34 
QuestionHOW TO hash a SOAP message Pin
mpavas31-Mar-08 10:45
mpavas31-Mar-08 10:45 
GeneralRe: HOW TO hash a SOAP message Pin
led mike31-Mar-08 11:03
led mike31-Mar-08 11:03 
GeneralRe: HOW TO hash a SOAP message Pin
mpavas31-Mar-08 11:31
mpavas31-Mar-08 11:31 
GeneralRe: HOW TO hash a SOAP message Pin
led mike1-Apr-08 5:00
led mike1-Apr-08 5:00 
GeneralRe: HOW TO hash a SOAP message Pin
mpavas1-Apr-08 7:04
mpavas1-Apr-08 7:04 
GeneralRe: HOW TO hash a SOAP message Pin
led mike1-Apr-08 7:22
led mike1-Apr-08 7:22 
GeneralRe: HOW TO hash a SOAP message Pin
mpavas1-Apr-08 8:11
mpavas1-Apr-08 8:11 
GeneralRe: HOW TO hash a SOAP message Pin
led mike1-Apr-08 8:27
led mike1-Apr-08 8:27 
GeneralRe: HOW TO hash a SOAP message Pin
mpavas1-Apr-08 8:50
mpavas1-Apr-08 8:50 
GeneralRe: HOW TO hash a SOAP message Pin
led mike1-Apr-08 9:38
led mike1-Apr-08 9:38 
AnswerRe: HOW TO hash a SOAP message Pin
mpavas1-Apr-08 9:42
mpavas1-Apr-08 9:42 
Generaldynamically create a control and making an event handler for it Pin
Mohammad A Gdeisat31-Mar-08 10:19
Mohammad A Gdeisat31-Mar-08 10:19 
GeneralRe: dynamically create a control and making an event handler for it Pin
led mike31-Mar-08 10:26
led mike31-Mar-08 10:26 
GeneralRe: dynamically create a control and making an event handler for it Pin
Mohammad A Gdeisat31-Mar-08 10:30
Mohammad A Gdeisat31-Mar-08 10:30 
GeneralRe: dynamically create a control and making an event handler for it Pin
led mike31-Mar-08 10:33
led mike31-Mar-08 10:33 
GeneralRe: dynamically create a control and making an event handler for it Pin
Mohammad A Gdeisat31-Mar-08 10:34
Mohammad A Gdeisat31-Mar-08 10:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.