Click here to Skip to main content
15,916,835 members
Home / Discussions / C#
   

C#

 
AnswerRe: Back and Forward Button for windows explorer Pin
Member 982361929-Mar-13 10:50
Member 982361929-Mar-13 10:50 
GeneralRe: Back and Forward Button for windows explorer Pin
baharan2029-Mar-13 11:14
baharan2029-Mar-13 11:14 
AnswerRe: Back and Forward Button for windows explorer Pin
Eddy Vluggen31-Mar-13 1:15
professionalEddy Vluggen31-Mar-13 1:15 
QuestionOSPF in the WSN Pin
traidat199229-Mar-13 7:11
traidat199229-Mar-13 7:11 
AnswerRe: OSPF in the WSN Pin
Pete O'Hanlon29-Mar-13 8:25
mvePete O'Hanlon29-Mar-13 8:25 
QuestionHELPPPP Pin
ali69929-Mar-13 4:43
ali69929-Mar-13 4:43 
QuestionHEKP Pin
ali69929-Mar-13 4:43
ali69929-Mar-13 4:43 
AnswerRe: HEKP Pin
Dave Kreskowiak29-Mar-13 5:04
mveDave Kreskowiak29-Mar-13 5:04 
QuestionList View Shift Selection behaves indifferently Pin
rakeshkava29-Mar-13 0:13
rakeshkava29-Mar-13 0:13 
QuestionRe: List View Shift Selection behaves indifferently Pin
Richard MacCutchan29-Mar-13 1:55
mveRichard MacCutchan29-Mar-13 1:55 
AnswerRe: List View Shift Selection behaves indifferently Pin
rakeshkava29-Mar-13 2:02
rakeshkava29-Mar-13 2:02 
GeneralRe: List View Shift Selection behaves indifferently Pin
Richard MacCutchan29-Mar-13 2:11
mveRichard MacCutchan29-Mar-13 2:11 
GeneralRe: List View Shift Selection behaves indifferently Pin
rakeshkava29-Mar-13 3:06
rakeshkava29-Mar-13 3:06 
GeneralRe: List View Shift Selection behaves indifferently Pin
rakeshkava31-Mar-13 22:51
rakeshkava31-Mar-13 22:51 
GeneralRe: List View Shift Selection behaves indifferently Pin
rakeshkava31-Mar-13 23:50
rakeshkava31-Mar-13 23:50 
GeneralRe: List View Shift Selection behaves indifferently Pin
Richard MacCutchan1-Apr-13 0:02
mveRichard MacCutchan1-Apr-13 0:02 
GeneralRe: List View Shift Selection behaves indifferently Pin
rakeshkava1-Apr-13 0:14
rakeshkava1-Apr-13 0:14 
AnswerRe: List View Shift Selection behaves indifferently Pin
Abhinav S29-Mar-13 3:57
Abhinav S29-Mar-13 3:57 
GeneralRe: List View Shift Selection behaves indifferently Pin
rakeshkava31-Mar-13 23:00
rakeshkava31-Mar-13 23:00 
GeneralRe: List View Shift Selection behaves indifferently Pin
rakeshkava31-Mar-13 23:49
rakeshkava31-Mar-13 23:49 
GeneralRe: List View Shift Selection behaves indifferently Pin
Abhinav S1-Apr-13 20:22
Abhinav S1-Apr-13 20:22 
QuestionRegarding About Image Url Pin
Member 583355028-Mar-13 23:45
Member 583355028-Mar-13 23:45 
AnswerRe: Regarding About Image Url Pin
Manfred Rudolf Bihy29-Mar-13 1:09
professionalManfred Rudolf Bihy29-Mar-13 1:09 
Questionvisual studio 2010 c# error Pin
User349028-Mar-13 18:05
User349028-Mar-13 18:05 
i have this error and the solutions that i found don't work.

the error is:
-------------

Error 12 Unable to copy file "obj\x86\Debug\WindowsFormsApplication1.exe" to "bin\Debug\WindowsFormsApplication1.exe". The process cannot access the file 'bin\Debug\WindowsFormsApplication1.exe' because it is being used by another process. WindowsFormsApplication1

Error 11 Could not copy "obj\x86\Debug\WindowsFormsApplication1.exe" to "bin\Debug\WindowsFormsApplication1.exe". Exceeded retry count of

10. Failed. WindowsFormsApplication1

Warning 9 Could not copy "obj\x86\Debug\WindowsFormsApplication1.exe" to "bin\Debug\WindowsFormsApplication1.exe". Beginning retry 9 in 1000ms. The process cannot access the file 'bin\Debug\WindowsFormsApplication1.exe' because it is being used by another process. WindowsFormsApplication1
Warning 8 Could not copy "obj\x86\Debug\WindowsFormsApplication1.exe" to "bin\Debug\WindowsFormsApplication1.exe". Beginning retry 8 in 1000ms. The process cannot access the file 'bin\Debug\WindowsFormsApplication1.exe' because it is being used by another process. WindowsFormsApplication1
Warning 7 Could not copy "obj\x86\Debug\WindowsFormsApplication1.exe" to "bin\Debug\WindowsFormsApplication1.exe". Beginning retry 7 in 1000ms. The process cannot access the file 'bin\Debug\WindowsFormsApplication1.exe' because it is being used by another process. WindowsFormsApplication1
Warning 6 Could not copy "obj\x86\Debug\WindowsFormsApplication1.exe" to "bin\Debug\WindowsFormsApplication1.exe". Beginning retry 6 in 1000ms. The process cannot access the file 'bin\Debug\WindowsFormsApplication1.exe' because it is being used by another process. WindowsFormsApplication1
Warning 5 Could not copy "obj\x86\Debug\WindowsFormsApplication1.exe" to "bin\Debug\WindowsFormsApplication1.exe". Beginning retry 5 in 1000ms. The process cannot access the file 'bin\Debug\WindowsFormsApplication1.exe' because it is being used by another process. WindowsFormsApplication1

...

THE SOLUTION THAT I FIND:
-------------------------

SQL
 add following lines of code to the pre-build event command line of your project.

if exist "$(TargetPath).locked" del "$(TargetPath).locked"
if exist "$(TargetPath)" if not exist "$(TargetPath).locked" move "$(TargetPath)" "$(TargetPath).locked"


SECOND SOLUTION:
--------------
VB
if exist "$(ProjectDir)bin\$(TargetFileName).locked" del "$(ProjectDir)bin\$(TargetFileName).locked"
if exist "$(ProjectDir)bin\$(TargetFileName)" if not exist "$(ProjectDir)bin\$(TargetFileName).locked" move "$(ProjectDir)bin\$(TargetFileName)" "$(ProjectDir)bin\$(TargetFileName).locked"


Can you please help me??
AnswerRe: visual studio 2010 c# error Pin
annex4528-Mar-13 21:12
annex4528-Mar-13 21:12 

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.