Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to kill a running dll Please, Please help

Status
Not open for further replies.

bigfoot

Programmer
May 4, 1999
1,779
US
I created a dll in VB 6.
I'm using personal web server to create a web site on my workstation before I unleash it on the server. I call the dll from the page and it works ok.
Then I try to recompile (change) the dll in vb and I get a Permission Denied error.
What can I do?

I have to keep rebooting my PC to change it.

HELP!!! I'm going crazy!

Code below:

<%@ LANGUAGE=&quot;VBSCRIPT&quot; %>
<%
Dim rptServer
Dim fname

Set rptServer = CreateObject(&quot;ReportCtl.ARTest&quot;)

rptServer.ServerPath = &quot;/&quot;
rptServer.OutputFormat = 0

If rptServer.RunReport() Then
fname = rptServer.FileName
Response.write &quot;Ran ok <br>&quot;
End If

Set rptServer = Nothing
%>

(end of source)

This runs on in vb, and in asp but once I use it I need to reboot to change it.>:-<







They never have to knock if your door is always open.
 
Go to services in the control panel, and shut down the web server . . . that will stop the IIS process and unload your DLL. Recompile your DLL and then restart the web server. - Jeff Marler
(please note, that the page is under construction)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top