Cannot deploy the third party DLL file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

HI GUYS,

I have added a third party liberity to my project. I can deployed
my project throught VISIUAL stadio 2005 by right clicking on Project and
select "deploy",

however after the first deploy, I quit my my application on Device.
and complie/build my project, when I do second deploy
It pops up an exception says "Deploy and/or registeration failed with
error:0x8973190e": ......"The process cannot access the file because it is
being used by another process."

I have checked on running program memory. no anyinformation that it is being
used
?

IS there anyone meets this issue?
please help me!

Thanks
 
The error usually means that your program is still running. I believe
that the default behavior of a mobile form is to continue running you
have to manually do a .Close() to exit the applications.

1.) Click Start->Settings
2.) Click on the System tab
3.) Click on Memory
4.) Click on the Running Programs tab
5.) Check to see if your form is running.
 
You can tell if the issue is related to a thread still running in your
application - soft reset the device. If the error is gone then something in
your application is not closing gracefully.

Peter
 
Make sure the dll file is not read-only.

Kay

Peter Foot said:
You can tell if the issue is related to a thread still running in your
application - soft reset the device. If the error is gone then something
in your application is not closing gracefully.

Peter
 
Back
Top