CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: ilyaz

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,287

    mix-up with DLL dependencies

    I have a C# .NET application that was created a couple of years ago in VS 2005. It's a console app that depends on a bunch of DLLs. One of them is a managed C++ DLL. I just rebuilt the app (and all...
  2. Re: different results when invoking console app directly and by CreateProcess

    It turns out the problem had nothing to do with how the tool was invoked. The initial post was essentially a false alarm.
  3. Re: different results when invoking console app directly and by CreateProcess

    I don't think this is the case, at least as far as PATH is concerned. When I invoked my utility by CreateProcess, I specified no path to that utility and it found it. Same deal when using system()...
  4. Re: different results when invoking console app directly and by CreateProcess

    UPDATE:
    I made some changes in the code and also drilled down the utility I was trying to invoke. I discovered that this utility actually invokes a MS Windows Media script via CreateProcess(). Wha...
  5. different results when invoking console app directly and by CreateProcess

    I have a command-line exe that, when invoked from a console window works normally, i.e. when given an input file, produces a good output file. When I invoke the same tool using CreateProcess() from a...
  6. _stat returns 0 size for file that might not be empty

    This is VC++ 6.0 code running on a Windows Server 2003 SP2 machine.
    1. I launch an external exe from my code using CreateProcess()
    2. This process creates a file on disk
    3. I do rc =...
  7. console app works on XP but not on Server 2003 -- bad dependency?

    I have a C++ console executable module build in VS2008. To run it requires some MS components to be installed, namely:
    -- Visual C++ 2005 Redistributable Package
    -- Window Media Encoder 9 Package ...
  8. Two part VC++ 6.0 q related to existence and non-emptiness of file

    I need to develop a piece of code in an old legacy Visual C++ 6.0 system. I am invoking a stand-alone executable via a system call. This exe is supposed to create a file if processing goes OK or not...
  9. How can I change project type in Visual Studio 6.0?

    I need to develop a C++ DLL in a legacy system, so I have to work with Visual Studio 6.0. The project I am working with was copied from a "template" project that someone created a long time ago. I...
  10. Re: How can I determine how C++ code is generated in VS6?

    Yes, these are .h and .cpp files
  11. Re: How can I determine how C++ code is generated in VS6?

    I don't know who created the template project, it was many moons ago. This project is just a C++ DLL project created in VS6, as far as I can tell. However, when you open its dsw file for the 1st time...
  12. Re: How can I determine how C++ code is generated in VS6?

    PA, I did not create the template project. It already existed. Documentation stated that I needed to (i) create a new DLL project and then (ii) copy some files from the template project into it. The...
  13. How can I determine how C++ code is generated in VS6?

    I have to develop a C++ DLL using Visual Studio 6 (don't ask why!) I am supposed to start from a template DLL project and then add functionality. Documentation states that I need to copy certain...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured