Click here to Skip to main content
15,912,578 members
Home / Discussions / C#
   

C#

 
AnswerRe: problem clalculating hours and minutes Pin
0x3c010-Sep-09 8:36
0x3c010-Sep-09 8:36 
AnswerRe: problem clalculating hours and minutes Pin
carlecomm23-Sep-09 1:10
carlecomm23-Sep-09 1:10 
QuestionIs there a way to registry factories when an assembly is loaded? Pin
k66610-Sep-09 8:01
k66610-Sep-09 8:01 
AnswerRe: Is there a way to registry factories when an assembly is loaded? Pin
Not Active10-Sep-09 8:35
mentorNot Active10-Sep-09 8:35 
Questionstrong name verification Pin
amit_upadhyay10-Sep-09 7:49
amit_upadhyay10-Sep-09 7:49 
AnswerRe: strong name verification Pin
I Believe In GOD10-Sep-09 12:08
I Believe In GOD10-Sep-09 12:08 
QuestionProblem with Visio ExportAsFixedFormat Pin
NarVish10-Sep-09 6:15
NarVish10-Sep-09 6:15 
AnswerRe: Problem with Visio ExportAsFixedFormat Pin
carlecomm23-Sep-09 1:06
carlecomm23-Sep-09 1:06 
/* for example to open a word;
key codes */

try

{ // Open the source document. wordDocument = wordApplication.Documents.Open( ref paramSourceDocPath, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing); // Export it in the specified format. if (wordDocument != null) wordDocument.ExportAsFixedFormat(paramExportFilePath, paramExportFormat, paramOpenAfterExport, paramExportOptimizeFor, paramExportRange, paramStartPage, paramEndPage, paramExportItem, paramIncludeDocProps, paramKeepIRM, paramCreateBookmarks, paramDocStructureTags, paramBitmapMissingFonts, paramUseISO19005_1, ref paramMissing);}catch (Exception ex){ // Respond to the error}finally{ // Close and release the Document object. if (wordDocument != null) { wordDocument.Close(ref paramMissing, ref paramMissing, ref paramMissing); wordDocument = null; } // Quit Word and release the object. if (wordApplication != null) { wordApplication.Quit(ref paramMissing, ref paramMissing, ref paramMissing); wordApplication = null; } GC.Collect(); GC.WaitForPendingFinalizers(); GC.Collect(); GC.WaitForPendingFinalizers();}

modified 27-May-14 5:30am.

GeneralRe: Problem with Visio ExportAsFixedFormat Pin
NarVish23-Sep-09 1:45
NarVish23-Sep-09 1:45 
AnswerRe: Problem with Visio ExportAsFixedFormat Pin
NarVish23-Sep-09 6:24
NarVish23-Sep-09 6:24 
QuestionRegular expression Pin
karmjit43510-Sep-09 2:41
karmjit43510-Sep-09 2:41 
AnswerRe: Regular expression Pin
Keith Barrow10-Sep-09 2:59
professionalKeith Barrow10-Sep-09 2:59 
AnswerRe: Regular expression Pin
Nuri Ismail10-Sep-09 3:04
Nuri Ismail10-Sep-09 3:04 
AnswerRe: Regular expression Pin
J4amieC10-Sep-09 3:05
J4amieC10-Sep-09 3:05 
GeneralRe: Regular expression Pin
karmjit43510-Sep-09 3:21
karmjit43510-Sep-09 3:21 
GeneralRe: Regular expression [modified] Pin
J4amieC10-Sep-09 3:55
J4amieC10-Sep-09 3:55 
GeneralRe: Regular expression Pin
PIEBALDconsult10-Sep-09 4:32
mvePIEBALDconsult10-Sep-09 4:32 
GeneralRe: Regular expression Pin
J4amieC10-Sep-09 4:33
J4amieC10-Sep-09 4:33 
GeneralRe: Regular expression Pin
PIEBALDconsult10-Sep-09 4:36
mvePIEBALDconsult10-Sep-09 4:36 
GeneralRe: Regular expression Pin
karmjit43510-Sep-09 20:20
karmjit43510-Sep-09 20:20 
GeneralRe: Regular expression Pin
karmjit43510-Sep-09 20:42
karmjit43510-Sep-09 20:42 
AnswerRe: Regular expression Pin
karmjit43510-Sep-09 3:22
karmjit43510-Sep-09 3:22 
GeneralRe: Regular expression Pin
PIEBALDconsult10-Sep-09 6:07
mvePIEBALDconsult10-Sep-09 6:07 
Questionhow to extend defalutl MessageBox properties in c# Pin
Ramesh Reddy1111110-Sep-09 2:29
Ramesh Reddy1111110-Sep-09 2:29 
AnswerRe: how to extend defalutl MessageBox properties in c# Pin
stancrm10-Sep-09 2:33
stancrm10-Sep-09 2:33 

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.