Click here to Skip to main content
15,891,789 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to Export Contents of DataTable and DataGridView in Excel without using Excel object. Pin
Infarkt9-Aug-09 3:31
Infarkt9-Aug-09 3:31 
AnswerRe: How to Export Contents of DataTable and DataGridView in Excel without using Excel object. Pin
sharad Pyakurel10-Aug-09 1:55
sharad Pyakurel10-Aug-09 1:55 
Questionproblem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
reilak9-Aug-09 1:28
reilak9-Aug-09 1:28 
AnswerRe: problem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
Luc Pattyn9-Aug-09 1:33
sitebuilderLuc Pattyn9-Aug-09 1:33 
GeneralRe: problem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
reilak9-Aug-09 1:45
reilak9-Aug-09 1:45 
GeneralRe: problem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
Luc Pattyn9-Aug-09 1:47
sitebuilderLuc Pattyn9-Aug-09 1:47 
GeneralRe: problem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
reilak9-Aug-09 1:50
reilak9-Aug-09 1:50 
GeneralRe: problem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
Luc Pattyn9-Aug-09 1:55
sitebuilderLuc Pattyn9-Aug-09 1:55 
yes, you have to close or dispose of it explicitly, or use a using statement which is a way to get it disposed of automatically. There is no "stack semantics" stuff in C#, and the GC will only execute finalizers if and when new memory allocations cannot be satisfied without collecting first (and even then finalizers run on a low-priority thread), so that can take a long time to happen.

Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

The quality and detail of your question reflects on the effectiveness of the help you are likely to get.
Show formatted code inside PRE tags, and give clear symptoms when describing a problem.

GeneralRe: problem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
reilak9-Aug-09 2:03
reilak9-Aug-09 2:03 
GeneralRe: problem writing to a file: The process cannot access the file 'c:\scene.xml' because it is being used by another process Pin
Luc Pattyn9-Aug-09 2:15
sitebuilderLuc Pattyn9-Aug-09 2:15 
QuestionCan I get the code of any *.exe file?? Pin
CoderForEver8-Aug-09 9:01
CoderForEver8-Aug-09 9:01 
AnswerRe: Can I get the code of any *.exe file?? Pin
harold aptroot8-Aug-09 9:47
harold aptroot8-Aug-09 9:47 
AnswerRe: Can I get the code of any *.exe file?? Pin
Not Active8-Aug-09 11:16
mentorNot Active8-Aug-09 11:16 
GeneralRe: Can I get the code of any *.exe file?? Pin
CoderForEver9-Aug-09 3:48
CoderForEver9-Aug-09 3:48 
GeneralRe: Can I get the code of any *.exe file?? Pin
Not Active9-Aug-09 4:51
mentorNot Active9-Aug-09 4:51 
GeneralRe: Can I get the code ...?? No! Pin
Luc Pattyn9-Aug-09 5:29
sitebuilderLuc Pattyn9-Aug-09 5:29 
GeneralRe: Can I get the code of any *.exe file?? Pin
CoderForEver10-Aug-09 1:58
CoderForEver10-Aug-09 1:58 
QuestionBlink form Pin
gal0008-Aug-09 5:55
gal0008-Aug-09 5:55 
AnswerRe: Blink form Pin
Not Active8-Aug-09 6:25
mentorNot Active8-Aug-09 6:25 
GeneralRe: Blink form Pin
Judah Gabriel Himango8-Aug-09 8:05
sponsorJudah Gabriel Himango8-Aug-09 8:05 
AnswerRe: Blink form Pin
PIEBALDconsult8-Aug-09 6:54
mvePIEBALDconsult8-Aug-09 6:54 
AnswerRe: Blink form Pin
Abhishek Sur8-Aug-09 7:51
professionalAbhishek Sur8-Aug-09 7:51 
GeneralRe: Blink form Pin
PIEBALDconsult9-Aug-09 14:46
mvePIEBALDconsult9-Aug-09 14:46 
QuestionWindow form start position [modified] Pin
tamir9018-Aug-09 5:50
tamir9018-Aug-09 5:50 
AnswerRe: Window form start position Pin
Eddy Vluggen8-Aug-09 6:17
professionalEddy Vluggen8-Aug-09 6:17 

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.