Click here to Skip to main content
15,923,083 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to Run executable by a windows service Pin
Giorgi Dalakishvili18-Sep-08 22:59
mentorGiorgi Dalakishvili18-Sep-08 22:59 
GeneralRe: How to Run executable by a windows service Pin
Vikram A Punathambekar19-Sep-08 6:21
Vikram A Punathambekar19-Sep-08 6:21 
AnswerRe: How to Run executable by a windows service Pin
#realJSOP18-Sep-08 23:49
professional#realJSOP18-Sep-08 23:49 
QuestionSet timeout to asynchron calls Pin
greekius18-Sep-08 20:37
greekius18-Sep-08 20:37 
QuestionConnect to camera with C# Pin
Member 467828718-Sep-08 20:26
Member 467828718-Sep-08 20:26 
QuestionRe: Connect to camera with C# Pin
Mark Salsbery19-Sep-08 7:07
Mark Salsbery19-Sep-08 7:07 
QuestionBackgroundWorker method executing twice Pin
scody18-Sep-08 18:20
scody18-Sep-08 18:20 
AnswerRe: BackgroundWorker method executing twice Pin
N a v a n e e t h18-Sep-08 19:30
N a v a n e e t h18-Sep-08 19:30 
GeneralRe: BackgroundWorker method executing twice Pin
scody18-Sep-08 20:35
scody18-Sep-08 20:35 
GeneralRe: BackgroundWorker method executing twice Pin
#realJSOP18-Sep-08 23:53
professional#realJSOP18-Sep-08 23:53 
AnswerRe: BackgroundWorker method executing twice Pin
Steve Echols18-Sep-08 19:51
Steve Echols18-Sep-08 19:51 
AnswerRe: BackgroundWorker method executing twice Pin
scody18-Sep-08 21:03
scody18-Sep-08 21:03 
QuestionHow do I know BackgroundWorker work complete? Pin
mimimimilaw18-Sep-08 18:01
mimimimilaw18-Sep-08 18:01 
AnswerRe: How do I know BackgroundWorker work complete? Pin
N a v a n e e t h18-Sep-08 18:12
N a v a n e e t h18-Sep-08 18:12 
GeneralRe: How do I know BackgroundWorker work complete? Pin
mimimimilaw18-Sep-08 18:56
mimimimilaw18-Sep-08 18:56 
GeneralRe: How do I know BackgroundWorker work complete? Pin
N a v a n e e t h18-Sep-08 19:28
N a v a n e e t h18-Sep-08 19:28 
AnswerRe: How do I know BackgroundWorker work complete? Pin
#realJSOP18-Sep-08 23:57
professional#realJSOP18-Sep-08 23:57 
QuestionHow to compress and decompress an image using GDI+ JPEG? Pin
gigahertz20518-Sep-08 17:57
gigahertz20518-Sep-08 17:57 
AnswerRe: How to compress and decompress an image using GDI+ JPEG? Pin
Anthony Mushrow19-Sep-08 1:02
professionalAnthony Mushrow19-Sep-08 1:02 
QuestionOutlook Issue. Newbie Question Pin
kruegersck18-Sep-08 17:33
kruegersck18-Sep-08 17:33 
QuestionFIB Pin
Miss_hacker18-Sep-08 16:09
Miss_hacker18-Sep-08 16:09 
QuestionCan i write a small plugin for Internet Explorer in .Net ? Pin
SWSDEV18-Sep-08 14:28
SWSDEV18-Sep-08 14:28 
QuestionCrystal Reports Help Pin
Alldaypilot18-Sep-08 14:10
Alldaypilot18-Sep-08 14:10 
QuestionRead already opened file Pin
srabik18-Sep-08 13:27
srabik18-Sep-08 13:27 
AnswerRe: Read already opened file Pin
Guffa18-Sep-08 21:20
Guffa18-Sep-08 21:20 
If you copy the database files that is in use, you don't know if they are complete. The database driver may be in the middle of changing something in the files, so in that case your copy would be corrupted.

If you close all connections to the database, the driver should release the files. The problem with that is that there is a connection pool in .NET that may keep connections, so you would either have to quit your application or manipulate the connection pool.

If you detach the database, it's safe to copy the files.

Despite everything, the person most likely to be fooling you next is yourself.

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.