Click here to Skip to main content
15,893,814 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to read and update existing language MST file (1033.mst) which is part of MSI Package using C# application? Pin
OriginalGriff12-Mar-24 20:02
mveOriginalGriff12-Mar-24 20:02 
QuestionSystem.Security.Cryptography.Aes Class Pin
Kevin Marois12-Mar-24 13:40
professionalKevin Marois12-Mar-24 13:40 
AnswerRe: System.Security.Cryptography.Aes Class Pin
Peter_in_278012-Mar-24 15:50
professionalPeter_in_278012-Mar-24 15:50 
GeneralRe: System.Security.Cryptography.Aes Class Pin
Kevin Marois13-Mar-24 7:44
professionalKevin Marois13-Mar-24 7:44 
AnswerRe: System.Security.Cryptography.Aes Class Pin
JudyL_MD13-Mar-24 2:05
JudyL_MD13-Mar-24 2:05 
GeneralRe: System.Security.Cryptography.Aes Class Pin
Kevin Marois13-Mar-24 7:44
professionalKevin Marois13-Mar-24 7:44 
GeneralRe: System.Security.Cryptography.Aes Class Pin
Kevin Marois13-Mar-24 8:16
professionalKevin Marois13-Mar-24 8:16 
SuggestionRe: System.Security.Cryptography.Aes Class Pin
Richard Deeming17-Mar-24 23:46
mveRichard Deeming17-Mar-24 23:46 
QuestionI want to display both Old and New Values in Form2. Pin
Sonika B S10-Mar-24 4:14
Sonika B S10-Mar-24 4:14 
AnswerRe: I want to display both Old and New Values in Form2. Pin
Dave Kreskowiak10-Mar-24 4:33
mveDave Kreskowiak10-Mar-24 4:33 
AnswerRe: I want to display both Old and New Values in Form2. Pin
OriginalGriff10-Mar-24 5:04
mveOriginalGriff10-Mar-24 5:04 
QuestionVideo Merging with Xabe.FFmpeg. How to track the progress? Pin
Kasun Lee8-Mar-24 20:13
Kasun Lee8-Mar-24 20:13 
AnswerRe: Video Merging with Xabe.FFmpeg. How to track the progress? Pin
OriginalGriff8-Mar-24 20:40
mveOriginalGriff8-Mar-24 20:40 
AnswerRe: Video Merging with Xabe.FFmpeg. How to track the progress? Pin
Andre Oosthuizen9-Mar-24 0:27
mveAndre Oosthuizen9-Mar-24 0:27 
QuestionVideo Merging using Splicer Lib Pin
Kasun Lee5-Mar-24 17:36
Kasun Lee5-Mar-24 17:36 
AnswerRe: Video Merging using Splicer Lib Pin
Dave Kreskowiak5-Mar-24 18:41
mveDave Kreskowiak5-Mar-24 18:41 
AnswerRe: Video Merging using Splicer Lib Pin
OriginalGriff5-Mar-24 20:49
mveOriginalGriff5-Mar-24 20:49 
GeneralRe: Video Merging using Splicer Lib Pin
Kasun Lee6-Mar-24 3:36
Kasun Lee6-Mar-24 3:36 
GeneralRe: Video Merging using Splicer Lib Pin
OriginalGriff6-Mar-24 4:37
mveOriginalGriff6-Mar-24 4:37 
QuestionConnecting To SharePoint Very Slow Pin
Kevin Marois2-Mar-24 8:10
professionalKevin Marois2-Mar-24 8:10 
AnswerRe: Connecting To SharePoint Very Slow Pin
Pete O'Hanlon3-Mar-24 20:20
mvePete O'Hanlon3-Mar-24 20:20 
QuestionCrystal Reports is generating very poor HTML output Pin
PhilMcGahan28-Feb-24 9:49
PhilMcGahan28-Feb-24 9:49 
--When crystal reports is used to create HTML the output is poorly formatted.
--The same report will create a nice looking RTF file.
--I have tried all the options I can find, but the resulting HTML is too poor to be used in email unless the report rpt only produces very simple text output. Poor results if formatting uses underlining or tables.
Can you suggest an approach?

Dim htmlOpts As HTMLFormatOptions = ExportOptions.CreateHTMLFormatOptions()
htmlOpts.HTMLBaseFolderName = Path.GetTempPath()
htmlOpts.HTMLFileName = ReportFileName + randomPartOfFileName + "Html"
htmlOpts.HTMLHasPageNavigator = False
htmlOpts.HTMLEnableSeparatedPages = False

Dim exportOpts As ExportOptions = New ExportOptions()
exportOpts.ExportFormatType = CrystalDecisions.Shared.ExportFormatType.HTML40 << creates really bad html
exportOpts.ExportFormatType = CrystalDecisions.Shared.ExportFormatType.HTML32 << creates readable but poorly formatted in gmail or outlook
exportOpts.ExportDestinationType = ExportDestinationType.DiskFile
exportOpts.FormatOptions = htmlOpts
exportOpts.ExportDestinationOptions = diskopts
oReport.Export(exportOpts)
AnswerRe: Crystal Reports is generating very poor HTML output Pin
jschell28-Feb-24 12:30
jschell28-Feb-24 12:30 
GeneralRe: Crystal Reports is generating very poor HTML output Pin
PhilMcGahan29-Feb-24 2:32
PhilMcGahan29-Feb-24 2:32 
GeneralRe: Crystal Reports is generating very poor HTML output Pin
jschell29-Feb-24 12:21
jschell29-Feb-24 12:21 

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.