CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Guest

    Recompile DLL file

    I created some DLL Files and my ASP file will call those DLL files(COM). However,
    I have "persmission denied" problem when I recomplie the DLL files after I used them in my ASP file.
    Can anyone have any idea about this ?



  2. #2
    Join Date
    May 1999
    Location
    Oxford UK
    Posts
    1,459

    Re: Recompile DLL file

    It sound's like they are still loaded in memory once you've used them from ASP - I thought that IIS would unload them once they aren't used anymore. Maybe shutting down the webserver, recompiling the DLL and then restarting the server again will help.


    Chris Eastwood

    CodeGuru - the website for developers
    http://codeguru.developer.com/vb

  3. #3
    Guest

    Re: Recompile DLL file

    Can you think another way to do that ?
    I don't want to reboot my system when I debug my DLL file !




  4. #4
    Join Date
    Apr 1999
    Location
    Rotterdam, Netherlands
    Posts
    278

    Re: Recompile DLL file

    To debug your dll you can start a second instance of VB, run the dll (project properties set to something like 'wait till object is created" and that way you can debug the dll.
    I've had it with controls.. if i tried to recompile after using it in VB, I needed to start a new project first, the re-open the control project, and then I could recompile it.

    Crazy D :-)
    "One ring rules them all"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured