visual-studio-2008

Where does Visual Web Developer 2008 Express Edition keep it's project files

a 夏天 提交于 2019-12-11 17:44:14
问题 Related to a previous question re. the debugger not working for me from VS Express: Visual Studio Express can't debug - "The debugger is not properly installed" I established that the problem seemed to be with the particular project that VS had set up when I chose "Open Web Site > Filesystem". I would like to delete all references to this particular project and I'm wondering how to do this. I can't find any options in VS and deleting the relevant folder from "C:\Documents and Settings

Why does MSBuild fail from the command line where VS2008 succeeds?

一笑奈何 提交于 2019-12-11 17:43:07
问题 I have an ASP.NET solution that builds just fine from within VS2008. However , it fails when i do this : MSBUILD.exe c:\path-to-sln It fails with a CS0006 error ("Metadata file 'dll_name' could not be found"). It also fails when I try with a .csproj of a project within the solution. What is VS2008 doing that MSBuild is missing ? It is my understanding that VS knows about inter assembly dependencies that MSBuild cant. Is there any way I can inform MSBuild of these? (I need MSBuild to work from

Is anybody know any free round button for development in Windows-mobile?

北战南征 提交于 2019-12-11 17:27:30
问题 Is anybody know any free round button for development in Windows-mobile ? thank's in advance 回答1: Here is complete sample code for round buttons: http://j2i.net/BlogEngine/post/2009/08/11/A-Good-Way-to-Render-Round-Buttons.aspx 来源: https://stackoverflow.com/questions/1960662/is-anybody-know-any-free-round-button-for-development-in-windows-mobile

Unable to open Qt form (*.ui) files from Visual Studio

依然范特西╮ 提交于 2019-12-11 17:13:55
问题 I am unable to open QT form file (*.ui) from a Visual Studio 2008 Qt project. I'm using Qt 4.5.0. I get the the following error: The file test.ui cannot be opened with Qt 4 form editor. Try converting the file using uic.exe 回答1: I had the same symptoms, and the solution was to remove the top line of the ui file (once open with a text editor) Surprising that Qt does not support well formed xml... Meilleures Salutations 回答2: Are you sure that your *.ui file are in the qt4 format and not in the

how to get that Business intelligence Option in VS 2008

a 夏天 提交于 2019-12-11 16:44:39
问题 i would like to start a report(SSRS) project in VS 2008. I could not find Business inteligence project> report project in my VS 2008. How can i get it..? am using VS 2008 professional edition.!! 回答1: What you need is Business Intelligence Developer Studio - this is a cut-down version of VS2008. You get this by installing the reporting services client tools, which will either install a version of VS2008 (if it's not already installed), or, in your case, it will add the appropriate project

Run-Time Check Failure #0: Why am I getting this and what does it mean?

折月煮酒 提交于 2019-12-11 16:40:21
问题 In my program (it is for a homework assignment), I load in a model which is a bunch of vertices and normals etc into a struct I have. When drawing it, I pass the model to a function void drawModel(Model model) . Doing that gives me this error: Run-Time Check Failure #0 - The value of ESP was not properly saved across a function call. This is usually a result of calling a function declared with one calling convention with a function pointer declared with a different calling convention. I was

Remove border on activex ie control

爷,独闯天下 提交于 2019-12-11 16:28:46
问题 For the application im building, i use an activex ie control. It works greate but i cant work out how to remove the border around it. I have tried overriding the invoke call and setting DISPID_BORDERSTYLE to zero but it looks like it never gets hit. Any ideas? 回答1: I think you need to implement IDocHostUIHandler on your host. then in GetHostInfo you can return the DOCHOSTUIFLAG_NO3DBORDER or DOCHOSTUIFLAG_NO3DOUTERBORDER flag. 来源: https://stackoverflow.com/questions/1087537/remove-border-on

Compile generated files in Visual Studio

▼魔方 西西 提交于 2019-12-11 16:27:07
问题 Does Visual Studio have some options to add/compile all selected files that were auto generated outside visual studio i.e in pre build event? How to achieve this. 回答1: you can auto generate them once, add then to the project and just compile... the pre build will generate them and then you will compile with the fresh files. 来源: https://stackoverflow.com/questions/10374444/compile-generated-files-in-visual-studio

Is it possible to use .ctc files in Visual Studio 2010 packages?

半城伤御伤魂 提交于 2019-12-11 16:14:12
问题 I have a VSPackage that started life off as a Visual Studio 2005 project, was migrated successfully to Visual Studio 2008 and now it is being migrated to Visual Studio 2010. The problem is that all of the menus are defined in a .ctc file which I understand has now been superseded by the XML-based .vsct file, and they no longer work. Is there a way to get Visual Studio 2010 to recognise the .ctc file as before or am I going to have to convert all of the menus into the .vsct format? Everything

How to avoid duplicate settings when using 2 projects and 2 testing projects in Visual Studio?

被刻印的时光 ゝ 提交于 2019-12-11 16:02:57
问题 Following my previous question, now I have 2 projects: one Console Project and a Library Project. They also have their respective unit test projects. When I run a test for the console project that uses a method from the library project and the library project needs an app.config setting, that setting must be in the console test project's app.config. What I have to do to make it read the setting from the library project app.config, so then I do not have to duplicate the setting across multiple