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

    dll file required to run an exe

    How do I run an exe on a PC without visual studio installed on it?


  2. #2
    Join Date
    Apr 2000
    Location
    South Carolina,USA
    Posts
    2,210

    Re: dll file required to run an exe

    If you use standard package creation and installation precedures, the created package should contain everything to install everything needed to run your APP once installed on the receiving PC. YOu can't just copy a .exe to another PC. Your .EXE file uses system related objects like .DLL or .OCX files that are not part of your .EXE file and must somehow be installed on the target PC.

    John G

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