I am currently a C# programmer and have been interested in learning more about C++ and data structures. I found the CS106B class offered free online through the Stanford Engineering Everywhere program which seems like it would be a good fit.

I've tried to install the library files they use for the class and keep getting a message that I have to have visual studio 2005 installed for the setup file to run. I don't have 2005, but I've tried the express editions of both vc++ 2008 and vc++2005. Is there any way around this that I can get the proper files installed?

Edit: The zip file containing the libraries came with two files, an exe and an msi.

link|improve this question

Could you be more specific about these library files? Are they *.sln files, *.vcproj, *.lib? – Andrew Garrison Jun 18 '09 at 11:39
feedback

5 Answers

up vote 1 down vote accepted

Was having the same problem. I found both the .h and the .c files on line just now (w00t!)

You can find them here: http://www.ime.usp.br/~pf/Roberts/C-library/standard/cslib/

cheers,

nim

link|improve this answer
feedback

Reading through handout 5P makes it seem like the installer will expect the file structure VS2005 will create - especially this sentence: "Run (and quit) Visual Studio (you can go ahead and register your copy if it asks you). It is important that you have done this at least once before proceeding to the next step."

Try creating a folder structure like: (under "My Documents") "Visual Studio 2005\Projects" and see if setup.exe will work.

link|improve this answer
Thanks! I'll try this when I get home tonight and let you know. – Jon Jun 18 '09 at 13:25
Didn't work, I'm getting the same message. Anything else you can think of? – Jon Jun 18 '09 at 23:04
I tried this with VS 2003 and VS 2008, and it refused to install. I can't think of what else to suggest, other than sending Ms Zelenski an email through the "contact us" link. – R Ubben Jun 19 '09 at 20:05
feedback

I am using visual studio express, and all I did was to just unzip the files it works fine.. here I have done the CS106B assignment with also the full zip'd up files of that assignment as well, all I did was to uncompress the assignment from the cs106b website and open up the sln (solution) file within visual studio express.

link|improve this answer
feedback

There is no c++ library available for cs106b in unix system. I hope they publish the library in source.

link|improve this answer
feedback

Thanks to Dani, with his help, I succeed in installing the library on vs2008(both express and professinal are OK) on win7. With Dani's help, I have finished the first three assignments in cs106X(winter2010) - life, ADT, boggle - so far. I'm just a undergraduate in China, thanks so much to the great education of stanford and power of internet. http://abloggingattempt.blogspot.com/2010/05/stanford-cs106-lib-and-vs2008-express.html

the following are copied mainly from Dani's blog.

Stanford CS106 Lib and VS2008 Express The CS106B is a great CS Stanford course available online (iTunes e.g.) in video and for free. All assignments and the course itself use an in-house developed library (not sure if it has a name, cslib, cs106 lib, dunno) available in all of the assignment zips as well as installable with the Xcode/VS2005 wizard installs. The problem - the VS custom wizard will install on VS2005 only (could be that a newer version exists but I couldn't find one). So how to port the VS wizard to VS2008 Express(professional)? - I got the 2005 custom wizard setup, PCLibs-VS2005-ADT-Installer.zip and used a small tool , the LessMSIerables(Universal Extractor also works well) in order to extract the contents of the msi file. The msi contains four folders with all the stuff needed to create a new custom wizard. So, the tool extracted the following:

SourceDir |- Includes Folder |- Library Folder |- Project Folder |- Wizard Folder

  • Now some copying:
    1. The CS106CPPInc folder inside the 'Includes Folder' goes to C:\Program Files\Microsoft Visual Studio 9.0\VC\include (as a subfolder!)
    2. 'Library Folder'\CS106CPPLib.lib goes to C:\Program Files\Microsoft Visual Studio 9.0\VC\lib
    3. 'Wizard Folder\AppWiz\CS106 Assignment Wizard' to C:\Program Files\Microsoft Visual Studio 9.0\VC\VCWizards\AppWiz (meaning CS106... should appear as a sub-folder of AppWiz)
    4. The three files in 'Project Folder' will go into C:\Program Files\Microsoft Visual Studio 9.0\VC\Express\VCProjects\Stanford. One of those three files, the CS106 Assignment Wizard.vsz, needs to be edited (a text file) and its second line should become:

Wizard=VsWizard.VsWizardEngine.9.0

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.