Hi peekay!<br>
<br>
If you have a Visual Studio workspace file (*.dsw), it would be best to just open it with the IDE and hit F7. You're done (assuming no errors).<br>
<br>
If you have the makefile, it would be best if you used the NMAKE program:<br>
<br>
Open a DOS window, change to your c:\program files\microsoft visual studio\vc98\bin directory. Run the VCVARS.BAT file to set your environmental variables correctly (so the NMake program can find the compiler and linker programs). Now change to the directory where your source files are. Then say NMAKE <makefilename>. You should end up with a compiled EXE or DLL.<br>
<br>
Chip H.<br>