Click here to Skip to main content
15,896,912 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: hi sir for me ask? Pin
Christian Graus11-Nov-07 22:03
protectorChristian Graus11-Nov-07 22:03 
AnswerRe: hi sir for me ask? [modified] Pin
Michael Sync11-Nov-07 22:05
Michael Sync11-Nov-07 22:05 
AnswerRe: hi sir for me ask? Pin
John-ph11-Nov-07 22:43
John-ph11-Nov-07 22:43 
Questionerror while binding date Pin
dandamudi padma11-Nov-07 21:30
dandamudi padma11-Nov-07 21:30 
AnswerRe: error while binding date Pin
John-ph11-Nov-07 23:08
John-ph11-Nov-07 23:08 
GeneralRe: error while binding date Pin
dandamudi padma11-Nov-07 23:51
dandamudi padma11-Nov-07 23:51 
QuestionHow to set the Default Export FormatType in crystal reports? Pin
jmavn11-Nov-07 20:51
jmavn11-Nov-07 20:51 
AnswerRe: How to set the Default Export FormatType in crystal reports? Pin
Michael Sync11-Nov-07 21:04
Michael Sync11-Nov-07 21:04 
Have you tried this code??
' Declare variables and get the export options.<br />
Dim exportOpts As New ExportOptions()<br />
Dim diskOpts As New DiskFileDestinationOptions()<br />
Dim excelFormatOpts As New ExcelFormatOptions()<br />
exportOpts = Report.ExportOptions<br />
<br />
' Set the excel format options.<br />
excelFormatOpts.ExcelTabHasColumnHeadings = true<br />
<br />
exportOpts.ExportFormatType = ExportFormatType.Excel<br />
exportOpts.FormatOptions = excelFormatOpts<br />
<br />
' Set the export format.<br />
exportOpts.ExportFormatType = ExportFormatType.Excel<br />
<br />
exportOpts.ExportDestinationType = ExportDestinationType.DiskFile<br />
<br />
' Set the disk file options.<br />
diskOpts.DiskFileName = fileName<br />
exportOpts.DestinationOptions = diskOpts<br />
<br />
Report.Export()


ref: http://msdn2.microsoft.com/en-us/library/aa288404(VS.71).aspx

Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)


GeneralRe: How to set the Default Export FormatType in crystal reports? Pin
jmavn11-Nov-07 21:23
jmavn11-Nov-07 21:23 
QuestionGridView Pin
half-life11-Nov-07 20:45
half-life11-Nov-07 20:45 
AnswerRe: GridView Pin
varshavmane11-Nov-07 21:14
varshavmane11-Nov-07 21:14 
GeneralRe: GridView Pin
half-life12-Nov-07 2:31
half-life12-Nov-07 2:31 
QuestionCall javascript Pin
John Gathogo11-Nov-07 20:33
John Gathogo11-Nov-07 20:33 
AnswerRe: Call javascript Pin
varshavmane11-Nov-07 21:17
varshavmane11-Nov-07 21:17 
QuestionHow to create Wikis with ASP.Net. Pin
Prateek G11-Nov-07 20:09
Prateek G11-Nov-07 20:09 
AnswerRe: How to create Wikis with ASP.Net. Pin
Michael Sync11-Nov-07 20:16
Michael Sync11-Nov-07 20:16 
GeneralRe: How to create Wikis with ASP.Net. Pin
Prateek G11-Nov-07 20:36
Prateek G11-Nov-07 20:36 
QuestionWill it be possible to get similar product price programmatically? Pin
krishnaveer11-Nov-07 20:02
krishnaveer11-Nov-07 20:02 
AnswerRe: Will it be possible to get similar product price programmatically? Pin
Michael Sync11-Nov-07 20:25
Michael Sync11-Nov-07 20:25 
GeneralRe: Will it be possible to get similar product price programmatically? Pin
krishnaveer11-Nov-07 20:31
krishnaveer11-Nov-07 20:31 
GeneralRe: Will it be possible to get similar product price programmatically? Pin
Michael Sync11-Nov-07 20:37
Michael Sync11-Nov-07 20:37 
GeneralRe: Will it be possible to get similar product price programmatically? Pin
krishnaveer11-Nov-07 23:05
krishnaveer11-Nov-07 23:05 
Questiondifference between .net framework1.1 and .net framework2.0 Pin
saravanan0511-Nov-07 20:00
saravanan0511-Nov-07 20:00 
AnswerRe: difference between .net framework1.1 and .net framework2.0 Pin
Michael Sync11-Nov-07 20:05
Michael Sync11-Nov-07 20:05 
JokeRe: difference between .net framework1.1 and .net framework2.0 Pin
Vasudevan Deepak Kumar11-Nov-07 21:26
Vasudevan Deepak Kumar11-Nov-07 21:26 

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.