Woo! Ok, apparently I did build it on debug mode, and /MD was set. So, I switched it over to /MT and that fixed it, according to my virtual machine that's now up and running :) I'll have to check it out on Friday when I'm at the school to confirm, but that looks like it sorted it.
Thanks Chad (and Marcus for the GREAT VM reminder :))! On Tue, Feb 24, 2015 at 12:00 PM, Chad Vernon <[email protected]> wrote: > This typically happens while compiling in debug mode and has to do with > the Runtime Library flag. This usually happens when it is set to /MD or > /MDd which makes it use the dll versions of the runtime libraries. Using > /MT or /MTd use the static runtime library. > To set this compiler option in the Visual Studio development environment > > 1. > > Open the project's Property Pages dialog box. For details, see How to: > Open Project Property Pages > <https://msdn.microsoft.com/en-us/library/e79xc5h1.aspx>. > 2. > > Expand the C/C++ folder. > 3. > > Select the Code Generation property page. > 4. > > Modify the Runtime Library property. > > See this page for more details: > https://msdn.microsoft.com/en-us/library/2kzt1wy3.aspx?f=255&MSPPError=- > 2147217396 > > > On Monday, February 23, 2015 at 1:06:11 PM UTC-8, Marcus Ottosson wrote: >> >> You're very welcome, Joe. Happy to help. :) >> >> On Monday, 23 February 2015, Joe Weidenbach <[email protected]> wrote: >> >>> Thank you thank you thank you Marcus!!! >>> >>> Oddly enough, after 8 years in a mixed programming/IT role, I hadn't >>> even considered using a VM. Brilliant! >>> >>> Also, the technical info is great! Much appreciated! >>> >>> Thanks, >>> >>> Joe >>> >>> On Mon, Feb 23, 2015 at 12:24 PM, Marcus Ottosson < >>> [email protected]> wrote: >>> >>>> Set up a virtual machine - such as VMWare or VirtualBox - and try it >>>> out on a clean Windows install. >>>> >>>> In general, anything built using Visual Studio requires a >>>> re-distributable for the corresponding version; e.g. Visual Studio 2010 >>>> will link against dlls that your users can get a hold of via the Visual >>>> Studio 2010 re-distributable. >>>> >>>> But you can also bundle them. You’re typically looking for two dll’s; >>>> msvcr100 and msvcp100 for the 2010 version, but it depends on what you use. >>>> For example, here’s all files included in the 2013 re-distributable. >>>> >>>> mfc120.dll >>>> mfc120u.dll >>>> mfcm120.dll >>>> mfcm120u.dll >>>> msvcp120.dll >>>> msvcr120.dll >>>> vcamp120.dll >>>> vcomp120.dll >>>> >>>> That, along with any other libraries you dynamically linked with will >>>> need to be included. >>>> >>>> You can use Dependency Walker to find out exactly which; it hooks into >>>> an executable and “spies” on which libraries it imports. >>>> >>>> - http://www.dependencywalker.com/ >>>> >>>> It can be a bit cryptic to use at first but it’s the go-to tool for >>>> these type of situations. >>>> >>>> Good luck! >>>> >>>> Best, >>>> Marcus >>>> >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Python Programming for Autodesk Maya" group. >>>> To unsubscribe from this group and stop receiving emails from it, send >>>> an email to [email protected]. >>>> To view this discussion on the web visit https://groups.google.com/d/ >>>> msgid/python_inside_maya/CAFRtmOCo6WHBagky29EWLSVfC8% >>>> 2B0zy4EN_y404-%3DOtSE1fOQgQ%40mail.gmail.com >>>> <https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOCo6WHBagky29EWLSVfC8%2B0zy4EN_y404-%3DOtSE1fOQgQ%40mail.gmail.com?utm_medium=email&utm_source=footer> >>>> . >>>> >>>> For more options, visit https://groups.google.com/d/optout. >>>> >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Python Programming for Autodesk Maya" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected]. >>> To view this discussion on the web visit https://groups.google.com/d/ >>> msgid/python_inside_maya/CAM33%3Da72tbX6k01Lnk2HqW% >>> 3D6mkHBh%2BeDOfkEr2G4ZvoHKw_quw%40mail.gmail.com >>> <https://groups.google.com/d/msgid/python_inside_maya/CAM33%3Da72tbX6k01Lnk2HqW%3D6mkHBh%2BeDOfkEr2G4ZvoHKw_quw%40mail.gmail.com?utm_medium=email&utm_source=footer> >>> . >>> For more options, visit https://groups.google.com/d/optout. >>> >> >> >> -- >> *Marcus Ottosson* >> [email protected] >> >> -- > You received this message because you are subscribed to the Google Groups > "Python Programming for Autodesk Maya" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/python_inside_maya/73db7740-8445-425a-a399-53f06d55b810%40googlegroups.com > <https://groups.google.com/d/msgid/python_inside_maya/73db7740-8445-425a-a399-53f06d55b810%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAM33%3Da5mqjE3KaNbvYKHGa%3DQworN-%3DoTyEjJo0a%2BzwZTzu3wBg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
