CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    May 1999
    Posts
    18

    Help with output window message...

    I was wondering what is the cause of the following messages in the output window ???

    LDR: Automatic DLL Relocation in VerifLoginEss.exe
    LDR: Dll ESSNET.dll base 10000000 relocated due to collision with c:\essbase\bin\ESSAPIN.dll

    Is this kind of message an indication of a buggy application ???

    Thanx for your help


  2. #2
    Join Date
    Apr 1999
    Location
    Alabama, USA
    Posts
    261

    Re: Help with output window message...

    This isn't a bug. Its a result of using the same base address for two or more .dll(s) that you are using. The only side effect is that it takes your application a bit longer to start, since windows has to relocate the .dll.

    Under most circumstances, just ignore this.


  3. #3
    Join Date
    May 1999
    Posts
    18

    Re: Help with output window message...

    Thanx


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