CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 2 of 2 FirstFirst 12
Results 16 to 16 of 16
  1. #16
    Join Date
    Apr 1999
    Posts
    27,449

    Re: Running .exe files

    Quote Originally Posted by UniqueNoName View Post
    In that case then, I have no idea what todo to sort it
    Are you not familiar with DLL's? This has nothing to do with programming, but with the way Windows works.

    An application doesn't have to be a single EXE file. It may require one or more components, in this case Dynamic Link Libraries to be available at program start up. The "availability" of this DLL is determined by Windows by doing a search for the DLL file(s). The search logic that Windows uses to find a DLL is in the link I posted. Did you read it? So what is one of the areas that Windows searches when attempting to load a DLL?

    I'm trying to relay the point to you that the solutions given to you will work, but have absolutely nothing to do with CodeBlocks or whatever setting you've been told to set.

    Regards,

    Paul McKenzie
    Last edited by Paul McKenzie; November 7th, 2013 at 05:03 PM.

Page 2 of 2 FirstFirst 12

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