CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8
  1. #1
    Join Date
    Aug 2007
    Posts
    22

    Question an application inexecutable

    I don't understand why I can't execute my application made in a personal computer on a local network computer - a client with loose restrictions( downloaded applications are executable).
    The error "please do a reinstallation of the application...."
    Sorryfor the dumb question, thanks for the help.

  2. #2
    Join Date
    May 2002
    Posts
    10,943

    Re: an application inexecutable

    [ moved ]
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

  3. #3
    Join Date
    May 2002
    Posts
    10,943

    Re: an application inexecutable

    Since you haven't given details, this could be many options. In what language did you write this? What kind of errors are you receiving.

    If it is .NET, you will have to give this application FullTrust on the Intranet level. You would do this using CasPol.exe. However, if it is not .NET, then there could be many other options.

    Please be more specific.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

  4. #4
    Join Date
    Oct 2006
    Location
    Sweden
    Posts
    3,654

    Re: an application inexecutable

    If it's a MS C/C++ application this thread can be releated http://www.codeguru.com/forum/showthread.php?t=451862

  5. #5
    Join Date
    Aug 2007
    Posts
    22

    Re: an application inexecutable

    Thanks for your answers..
    I have tried my two exe's...one is MFC (release built) and the other is .NET
    both get the same error message of error code 0x00000135 (if I remember correctly)

  6. #6
    Join Date
    Oct 2006
    Location
    Sweden
    Posts
    3,654

    Re: an application inexecutable

    Have you installed the runtime dll's?

  7. #7
    Join Date
    May 2008
    Posts
    2

    Question Re: an application inexecutable

    Hello,

    I have the same problem, Idon't know how I can make a software that is inslallable on any machines of WinOS,

    Forexample, I am using flashget, when I press the setup button, it just runs and no matter what

    S_M_A could you please tell me more about runtime ll you are mentioning ?

    Thanks

  8. #8
    Join Date
    Oct 2006
    Location
    Sweden
    Posts
    3,654

    Re: an application inexecutable

    Have you read that thread I posted?

    A dynamically linked C/C++ application requires the correct runtime dll's to be installed, a .NET requires the appropriate .NET framework.

    The C/C++ runtime files are located in ...\Microsoft Visual Studio 8\VC\redist but can also be downloaded as a full install package from MS.

    The easiest way to get the .NET framework is via windows update

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