visual-studio-2008

How to open DataSet in Visual Studio 2008 faster?

廉价感情. 提交于 2019-12-24 07:06:13
问题 When I open DataSet in Visual Studio 2008 to design or modify it, it always take a very long time (more than five minutes) before I can continue to do my job. While I'm waiting I can't do anything on Visual Studio, moreover CPU and memory usage is growth dramatically. I want to know, Is it has anyway to reduce this waiting time? Hardware - Desktop CPU: Intel Q6600 Memory: 4 GB HDD: 320 GB 7200 rpm OS: Windows XP 32 bit with Service Pack 3 回答1: Have you tried this? Go to the Options -> Windows

How do i add a second code behind file to a xaml file?

懵懂的女人 提交于 2019-12-24 06:41:14
问题 In visual studio i want to add a second code behind file to a xaml window (my main form). i know i can have another (or as many) files that form partial parts of a class, and if they are in the same project they will be included, but can i make more than one file sit in the expander (in the solution explorer) when i expand the xaml file to see its code behind? 回答1: Your project file (.csproj for example) is actually XML. Open the .csproj file from the open file dialog, and you will see how it

How do i add a second code behind file to a xaml file?

两盒软妹~` 提交于 2019-12-24 06:40:19
问题 In visual studio i want to add a second code behind file to a xaml window (my main form). i know i can have another (or as many) files that form partial parts of a class, and if they are in the same project they will be included, but can i make more than one file sit in the expander (in the solution explorer) when i expand the xaml file to see its code behind? 回答1: Your project file (.csproj for example) is actually XML. Open the .csproj file from the open file dialog, and you will see how it

I can't Publish my website anymore

最后都变了- 提交于 2019-12-24 05:58:29
问题 I am trying to publish my site from Visual Studios 2008 Web Developer SP1. I do first a clean build then I rebuild it. I then go and try to publish it. I get one warning that seems to make it fail Warning 1 Error updating JScript IntelliSense: C:\Users\bob\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\25YI099T\jquery-fds90[1]..js: Object doesn't support this property or method @ 2139:1 E:\Projects\Dir\Version 2\trunk\Site\Views\Shared\Site.Master 1 1 I don't understand

Visual Studio 2008, Vista x64 and Kaspersky = blue screens (BSOD)?

橙三吉。 提交于 2019-12-24 05:53:11
问题 We just got cool new workstations - 8 GB, 24 inches screens, Vista x64 and a lot of power -- I just love it ! But we are facing some really annoying problems : BSODs ! We found out that the instant you install Kaspersky MP4 on a workstation, you can get BSOD while debugging ASPX pages. You can get one BSOD in a week or three in an hour... Those who : Don't have Kaspersky Don't debug ASPX pages Don't work... do not got BSOD. Note : We use usually use IE8 but it also have happened in Firefox.

CLSCompliant(true) drags in unused references

时间秒杀一切 提交于 2019-12-24 05:43:11
问题 Can anyone explain the following behavior? In summary, if you create multiple CLS compliant libraries in Visual Studio 2008 and have them share a common namespace root, a library referencing another library will require references to that library's references even though it doesn't consume them. It's pretty difficult to explain in a single sentence, but here are steps to reproduce the behavior (pay close attention to the namespaces): Create a library called LibraryA and add a a single class

How to view .dmp file on Windows 7?

冷暖自知 提交于 2019-12-24 05:01:52
问题 I have created a "minidump" file using the Visual Studio 2008 C++ debugger (Debug menu -> Save dump as...). I am running on Windows 7, 64-bit. What program can I run to view the contents of the dump file in a meaningful way? 回答1: What information are you trying to get out of it? WinDbg is my tool of choice. It's part of the Windows SDK. You can get download links from here: http://www.windbg.org/ Note that there are three plaforms for it - x86, x64, and IA64. You want the version based on

How to view .dmp file on Windows 7?

天大地大妈咪最大 提交于 2019-12-24 05:00:17
问题 I have created a "minidump" file using the Visual Studio 2008 C++ debugger (Debug menu -> Save dump as...). I am running on Windows 7, 64-bit. What program can I run to view the contents of the dump file in a meaningful way? 回答1: What information are you trying to get out of it? WinDbg is my tool of choice. It's part of the Windows SDK. You can get download links from here: http://www.windbg.org/ Note that there are three plaforms for it - x86, x64, and IA64. You want the version based on

Compile errors on deployed web application, but not in the IDE

本秂侑毒 提交于 2019-12-24 04:31:39
问题 In my deployed web application I am getting the following error: CS0103: The name 'releaseLionButton_Click' does not exist in the current context It identifies this as the offending line: <asp:Button ID="releaseLionButton" runat="server" Text="Release the Lion!" OnClick="releaseLionButton_Click"></asp:Button> In the code-behind file, I have the following code: internal void releaseLionButton_Click(object sender, EventArgs e) { if (selectedLionCage != null && selectedLionCage.DoorState ==

Hide a report item from print / export of an rdlc report

一笑奈何 提交于 2019-12-24 04:25:07
问题 I have an RDLC with multiple tables and for each table, I have a toggle TextBox Item that hides the corresponding table from the report. It works perfectly, however, I don't want these text boxes to be visible in the printed/exported reports. They are really meant for disabling content in the report and not as content themselves. Is there a way to hide those toggle boxes from only Print Layout and exported versions of the report? I looked at all of the properties of the report textbox and at