View Single Post
Old 07-25-2003, 01:47 PM   #3 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,505
sde is on a distinguished road
i guess if you are not referencing any of the .net framework, then it doesn't have to be installed on the machine running your code.

thanks for the code, but i hacked out something very simple .. i just needed to register a .dll file

Code:
# include <iostream.h>
# include <windows.h> 
 
int main()
{  	
  system("regsvr32 \"C:\\Program Files\\program\\file.dll\"");
  
  return 0;
}
now i want to build in some errors in case that their install directory was different than the default path.

thanks for the input =)
__________________
Mike
sde is offline   Reply With Quote