Click here to Skip to main content
15,892,768 members
Home / Discussions / C#
   

C#

 
GeneralRe: Delete a locked file Pin
Dave Kreskowiak22-Jun-05 12:53
mveDave Kreskowiak22-Jun-05 12:53 
GeneralRe: Delete a locked file Pin
nemopeti22-Jun-05 21:12
nemopeti22-Jun-05 21:12 
GeneralRe: Delete a locked file Pin
Dave Kreskowiak23-Jun-05 2:17
mveDave Kreskowiak23-Jun-05 2:17 
GeneralC+ to c# Pin
GoodQuestion22-Jun-05 10:29
GoodQuestion22-Jun-05 10:29 
GeneralRe: C+ to c# Pin
Jeff Martin22-Jun-05 10:47
Jeff Martin22-Jun-05 10:47 
GeneralRe: C+ to c# Pin
DavidNohejl22-Jun-05 10:49
DavidNohejl22-Jun-05 10:49 
QuestionAlternative to Aspose.Word? Pin
Carl Mercier22-Jun-05 9:48
Carl Mercier22-Jun-05 9:48 
AnswerRe: Alternative to Aspose.Word? Pin
Scott Serl23-Jun-05 11:58
Scott Serl23-Jun-05 11:58 
Depending on your merge data, and the appearance you want, you could use a crystal report to make your word files.
ExportType = CrystalDecisions.[Shared].ExportFormatType.WordForWindows
rpt = New CrystalDecisions.CrystalReports.Engine.ReportDocument
rpt.Load(ReportFilePath)
rpt.SetDataSource(ds)
<br> <br>
DestinationOption = New CrystalDecisions.Shared.DiskFileDestinationOptions
ReportOutputFile = DestinationPath
DestinationOption.DiskFileName = ReportOutputFile
<br> <br>
crExportOptions = rpt.ExportOptions
crExportOptions.DestinationOptions = DestinationOption
crExportOptions.ExportDestinationType = CrystalDecisions.[Shared].ExportDestinationType.DiskFile
crExportOptions.ExportFormatType = ExportType
rpt.Export()

The dataset needs to be a strongly typed dataset in order to bind it to crystal. You can just get 1 record at a time into the dataset and export the report in a loop. You can also output to pdf if you prefer.
GeneralRe: Alternative to Aspose.Word? Pin
Carl Mercier23-Jun-05 13:43
Carl Mercier23-Jun-05 13:43 
QuestionHow to move a directory to a diferent particion Pin
nemopeti22-Jun-05 8:23
nemopeti22-Jun-05 8:23 
AnswerRe: How to move a directory to a diferent particion Pin
Dave Kreskowiak22-Jun-05 9:16
mveDave Kreskowiak22-Jun-05 9:16 
GeneralSOLVED Pin
nemopeti22-Jun-05 10:47
nemopeti22-Jun-05 10:47 
Generalwhy on debug it makes a .dll Pin
Sasuko22-Jun-05 7:41
Sasuko22-Jun-05 7:41 
GeneralRe: why on debug it makes a .dll Pin
S. Senthil Kumar22-Jun-05 7:55
S. Senthil Kumar22-Jun-05 7:55 
GeneralRe: why on debug it makes a .dll Pin
Dave Kreskowiak22-Jun-05 9:14
mveDave Kreskowiak22-Jun-05 9:14 
GeneralRe: why on debug it makes a .dll Pin
Sasuko22-Jun-05 11:26
Sasuko22-Jun-05 11:26 
GeneralRe: why on debug it makes a .dll Pin
Dave Kreskowiak22-Jun-05 17:38
mveDave Kreskowiak22-Jun-05 17:38 
GeneralRe: why on debug it makes a .dll Pin
DavidNohejl22-Jun-05 10:53
DavidNohejl22-Jun-05 10:53 
Generaltypedef struct in C# Pin
bynaryum22-Jun-05 7:11
bynaryum22-Jun-05 7:11 
GeneralRe: typedef struct in C# Pin
Dave Kreskowiak22-Jun-05 7:26
mveDave Kreskowiak22-Jun-05 7:26 
GeneralRe: typedef struct in C# Pin
S. Senthil Kumar22-Jun-05 7:52
S. Senthil Kumar22-Jun-05 7:52 
GeneralRe: typedef struct in C# Pin
bynaryum23-Jun-05 4:11
bynaryum23-Jun-05 4:11 
Generallate binding to Excel Chart Pin
Ariadne22-Jun-05 6:46
Ariadne22-Jun-05 6:46 
GeneralMeasureString and HTML Pin
Mr. Rogers22-Jun-05 6:43
Mr. Rogers22-Jun-05 6:43 
GeneralRe: MeasureString and HTML Pin
Dave Kreskowiak22-Jun-05 7:19
mveDave Kreskowiak22-Jun-05 7:19 

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.