visual-studio-2008

Is there any way to delay the fade-in time for intellisense in Visual Studio?

ε祈祈猫儿з 提交于 2019-12-12 18:44:28
问题 I just switched to VS2008, and intellisense is even more 'helpful' there than in 2005. I'm finding it to really break my concentration having it pop up every time I reach the end of a token or key word or whatever. I have to hit ESC or ignore it and it's really annoying. I've not been able to find a setting to delay its activation. I do want it, so can't just cripple it, but I'd like it to wait for a second or two pause in my typing to activate. Anyone know if there is such an option

Installing Visual Studio 2008 TS after Visual Studio 2010 Beta 1

你离开我真会死。 提交于 2019-12-12 18:35:44
问题 I recently installed Visual Studio Professional 2010 Beta 1 and noticed that most of the install directories were independent of "shared" directories (I have Visual Studio C++ 2008 Express installed and didn't notice any conflicts). If I install the full version (non-beta/trialware), of VS 2008 TS, will it conflict at all with the VS 2010 Beta 1 install ? I probably should have installed VS 2008 TS first... Thanks 回答1: Though the reverse would probably be the better choice, I've done exactly

antlr c# errors when integrating into VS2008

心已入冬 提交于 2019-12-12 18:23:38
问题 I am following the tutorial at: http://www.antlr.org/wiki/pages/viewpage.action?pageId=557075 When I get to step 11, compile with VS I am getting the following: Error The type or namespace name 'AstParserRuleReturnScope' could not be found Error The type or namespace name 'GrammarRule' could not be found Error The type or namespace name 'GrammarRuleAttribute' could not be found etc. Any tips from anyone? There is little to no documentation to help me here. Thanks! 回答1: Use ANTLRWorks 1.4 to

I have added an OnPaint() function to my dialog class but its not getting called after dlg.DoModal()

纵饮孤独 提交于 2019-12-12 18:17:46
问题 Can anyone please help me understand how to override OnPaint() for a dialog class derived from CDialog . Here is the code: ColorImageDlg *pDlg = NULL; pDlg = new ColorImageDlg; pDlg->DoModal(); delete pDlg; I'm overriding OnInitDialog() and it's getting called. But while overriding OnPaint() it is not getting called. Can any one please help me fixing it? 回答1: First of all what is the point of creating the instance of the dialog on heap? You can simply do: ColorImageDlg dlg; dlg.DoModal(); You

Visual Studio intellisense not working in one .ascx file

让人想犯罪 __ 提交于 2019-12-12 17:30:58
问题 I have two .ascx files in the same folder in an ASP.NET MVC project. In one of them intellisense is working fine. In the other it does not work at all. Any ideas? The files are very similar with the same @control definition at the top. Using VS2008 and C#. 回答1: Try rebuilding your project. Intellisense doesn't work in views until it has been built. 回答2: Sometimes I find deleting the designer.cs file, and then right clicking the .ascx and selecting 'Convert To Web Application' (which re-gens

Batch files in Visual Studio 2008

吃可爱长大的小学妹 提交于 2019-12-12 17:24:41
问题 I need help with a very frustrating problem with Visual Studio 2008. I have a project in C# which calls, during the pre-compilation phase, a batch file which copies some dlls into a sub-directory of the project itself. It often happens that Visual Studio reports an error caused by the execution of the batch file: it says that the execution had terminated with code 1. After that, the only solution to compile again the project is restarting Visual Studio. Once restarted, the compilation doesn't

Running executable from VS2008 crashes with error “Application was unable to start correctly (0x000007b)” x64

℡╲_俬逩灬. 提交于 2019-12-12 17:12:15
问题 This error is present in both Debug/Release. So the original problem was that it had 32 bit library that I did not link to 64 version of it. (Previous version of this question) I fixed that. And application works on Windows Server Standard 2008R2 x64. I tried running application on Windows Server Enterprise but got above (title) mentioned error message. Dependency walker says "Modules with different CPU types were found" and for some reason it seems its linking incorrectly to 32 bit library,

where to observe the global data structures, variables in visual studio?

感情迁移 提交于 2019-12-12 16:26:59
问题 Wehn I debug and reach a breakpoint I can see only the local variables in the Locals tab in visual studio 2008. where to observe the global data structures, variables in visual studio? 回答1: In the Watch window. The Local tab is for local variables, as the name clearly suggests. You'll need to add the variable manually. You can go to the quick-watch window - Ctrl + Alt + Q , enter the variable name there, and press Add Watch . The variable will be added to the Watch window. 回答2: Watch is

ASP .Net Page Can't Be Displayed Error

穿精又带淫゛_ 提交于 2019-12-12 16:17:27
问题 I am having the strangest issue. My website has been working perfectly in Visual Studio 2008 until I tried to work on the website in Visual Studio 2012. Having abandoned that idea, I am now back to Visual Studio 2008 with the following problem. Problem: Any page inside any folder displays a "Page can't be displayed" error or similar in all browsers (IE, Firefox, Chrome, Safari) UNLESS the page is a Default.aspx page. Break points do not load for any of the pages having problems, although

How do I set Environmental variable for my application while profiling it under visual studio 2008

会有一股神秘感。 提交于 2019-12-12 16:13:22
问题 I have an application. I compile it using vs2008 team system. To run this app some certain environmental variables need to be set, such as SYSTEM_MODULE_PATH. My app loads system modules from there. Without this variable it wont run. So When I profile it, I want to set this variable so that my application runs properly. Now my question is, Where do I set this variable? 回答1: Start -> Control Panel -> System -> advanced Tab -> Environment variables or CMD -> SET [variable=[string]] 回答2: I fixed