Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. suheil

    COM DLL WITH .NET ON WIN2003 SERVER

    I have a VFP8 project that I compiled into a Multithreaded COM server DLL. I am then adding this DLL as a Reference in a C#.NET project, and calling a function from it. This has been working as expected on WinXP and Win2000. Recently, I tried it on Windows 2003 Server, and the call to the...
  2. suheil

    Can code support two versions of PHP?

    Thanks. I tried that, but it seems its doesn't quite do what I'm looking for. Something like: $phpversion = strval(substr(phpversion(),0,1)); if ($phpversion<=4) echo "Version 4 or lower"; else echo "Version 5 or higher"; works as expected. But the...
  3. suheil

    Can code support two versions of PHP?

    Hi Is it possible to have PHP code support two versions of PHP? In particular, in PHP 4 I have code of the form $obj->__clone(); Now, in PHP 5 that needs to change to: clone $obj; Is it possible to write code for this which will run on both PHP 4 and PHP 5? As a C programmer, I am thinking...

Part and Inventory Search

Back
Top