Ask a Question related to ASP.NET General, Design and Development.
-
ana #1
.net and dlls
Hi,
I'm using .net and C# and from C# i'm calling a dll. The
problem is that after the dll runs, it gets blocked and i
can't update or delete the file unless i stop .net or
reboot my computer. Does this mean that i need to put my
dll in a com+ object? Is there an easier way to solve this
problem?
ana Guest
-
extracting dlls from cab
Internet Component Download: I've created cab file which must extract a list of dlls to the user's machine. Since there is problem in extracting... -
Web Services and DLLs
I'm new to Web Services, and doing some research on solutions to solve my business problem. I have a 3rd party DLL I would like to expose to my... -
Loading non COM Dlls?
Hey all, Im trying to call a win32 dll from coldfusion, but everywhere i look just talks about com dlls, is there no way to load a non COM dll... -
Help! Unable to load DLLs.
Got error message: Unable to load dynamic library '.\extension\php_mssql.dll' - The specified module could not be found. I tried change php.ini... -
.Net Dlls and ASP.NET app.
I posted this question in the past, but have not yet received an answer. Here is the question. By default an ASP.NET app developed in Visual... -
Kevin Spencer #2
Re: .net and dlls
What kind of DLL are you referring to? What do you mean by "stop .net?"
HTH,
Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
[url]http://www.takempis.com[/url]
Big things are made up of
lots of Little things.
"ana" <ana_laura123@yahoo.com> wrote in message
news:0f9c01c33cf4$e901ec50$a601280a@phx.gbl...> Hi,
>
> I'm using .net and C# and from C# i'm calling a dll. The
> problem is that after the dll runs, it gets blocked and i
> can't update or delete the file unless i stop .net or
> reboot my computer. Does this mean that i need to put my
> dll in a com+ object? Is there an easier way to solve this
> problem?
Kevin Spencer Guest
-
jeff #3
Re: .net and dlls
that is the nature of .dll's. when an api is called within a .dll, the .dll
is loaded into memory and it is treated is if it is part of the program that
is calling it. this also is shown that if the .dll crashes, your .exe
calling it will also crash.
that isn't to say you couldn't load it into a separate thread and when the
thread disappears, maybe the api in memory also disappears. i am really not
sure though, haven't tried it.
jeff
"ana" <ana_laura123@yahoo.com> wrote in message
news:0f9c01c33cf4$e901ec50$a601280a@phx.gbl...> Hi,
>
> I'm using .net and C# and from C# i'm calling a dll. The
> problem is that after the dll runs, it gets blocked and i
> can't update or delete the file unless i stop .net or
> reboot my computer. Does this mean that i need to put my
> dll in a com+ object? Is there an easier way to solve this
> problem?
jeff Guest



Reply With Quote

