visual-studio-2008

How Can We Have A SCROLLABLE GridView With Fixed Header?

半世苍凉 提交于 2020-01-02 09:43:27
问题 How Can We Have A SCROLLABLE GridView With Fixed Header???(in vs 2008 - asp.net with c#) Fixed Header is my problem! i test many ways for doing that and see some live demos / but they did not work. can u show me a simple way 4 doing that with an example? 回答1: two tables, one for header and one for content. only problem is that u need to set specific widths for each column. <style> .tbl th { border: 1px solid black; background:#DDD; } .tbl td { border: 1px solid black; border-top:none }

“The application was unable to start correctly (0xc000007b). Click ok to close the application.”

泪湿孤枕 提交于 2020-01-02 08:09:29
问题 I am getting the error message in the title on a VPS running Windows Server 2008 R2 Enterprise SP1 when I try to open Visual Studio 2010. Things were working fine in the beginning even after I installed SQL Server 2012 and VS 2013. In trying to resolve this, I found others who had this issue stating that the 32 bit version of the msvcp100, msvcp100d, msvcr100, msvcr100d, and msvcr100_clr0400 DLLs in the SysWOW64 folder were overwritten somehow with the 64 bit version. So, I downloaded the 32

“The application was unable to start correctly (0xc000007b). Click ok to close the application.”

时光怂恿深爱的人放手 提交于 2020-01-02 08:09:21
问题 I am getting the error message in the title on a VPS running Windows Server 2008 R2 Enterprise SP1 when I try to open Visual Studio 2010. Things were working fine in the beginning even after I installed SQL Server 2012 and VS 2013. In trying to resolve this, I found others who had this issue stating that the 32 bit version of the msvcp100, msvcp100d, msvcr100, msvcr100d, and msvcr100_clr0400 DLLs in the SysWOW64 folder were overwritten somehow with the 64 bit version. So, I downloaded the 32

Run NUnit tests automatically from command line

我与影子孤独终老i 提交于 2020-01-02 07:23:26
问题 I'm launching the NUnit gui from visual studio by setting the test project to start start nunit 2.5.3 as an external program. That loads the tests into the GUI but I still have to manually click the run button. Is there a command line argument that will have the tests run at the same time they're loaded? 回答1: Specify /run on the command line. 回答2: Help Syntax NUNIT-GUI [inputfile] [options] Runs a set of NUnit tests from the console. You may specify an assembly or a project file of type

Visual Studio: Add same project or reference to different solutions

做~自己de王妃 提交于 2020-01-02 07:20:32
问题 I am trying to set up my Visual Studio projects. I have a generic project (say SharedProj) that has all the constants, common classes. SharedProj will be referenced by two other solutions (say SolnA, SolnB), but potential more in the future. There are two ways I can think of: I can add SharedProj to both SolnA and SolnB. Or I can add the SharedProj.dll to the References in both SolnA and SolnB. Since this is my first time working on a solution that references other projects/solutions, is one

How does one convert a Visual Studio .NET 2008 solution to Visual Studio .NET 2005?

ぐ巨炮叔叔 提交于 2020-01-02 07:18:13
问题 Assume that a solution only contains classes and that those classes are all written to .NET 2.0 specifications. If that solution were to be opened, converted and saved in Visual Studio 2008, would it be possible to reopen the solution later in Visual Studio 2005 with some minimal modifications to the .SLN file? How would one go about doing that? Is there a tool that will "down convert" .SLN files from 2008 to 2005 if all of the classes contained within the solution are already written to .NET

Windows Mobile application in full-screen mode

ε祈祈猫儿з 提交于 2020-01-02 06:00:33
问题 I have a Windows Mobile application developed with Visual Studio 2008 and C# (Smart Device Project). When I run the application there's a start menu bar visible on the top and keyboard bar on the bottom. How can I make my application run in full-screen mode? If possible I would like to have a solution that will allow me to turn full-screen mode on and off on runtime (after clicking some form button for example). 回答1: Getting rid of the keyboard/menu bar at the bottom is easy: just remove the

Reference project “readonly” in Visual Studio?

試著忘記壹切 提交于 2020-01-02 04:42:47
问题 I have two applications in two solutions in VS2008 that share a common dll, the dll-code is included as a project in the first applications solution. Is it possible to allow the second solution to reference the dll project "readonly"? I want whoever opens the second solution to be able to step into the dll during debugging but not be able to change the code. 回答1: I would simply build against the dll+pdb. The pdb is enough to step into code, without ever being able to edit it. You can enable

VS 2008 Intellisense hanging on right click

爱⌒轻易说出口 提交于 2020-01-02 04:33:14
问题 I have a fairly large C++ solution in Visual Studio 2008 SP1. When I RIGHT CLICK, I see the updating intellisense in the status bar and the whole studio freezes for several minutes. Right click worked fine in 2005. Any workarounds? 回答1: Updating intellisense on larger projects just kills productivity - Visual Assist is a much better replacement. I think though that intellisense is also linked to the way VS parses the code for the designer, so a more temporary solution to test with is to

The best way to rename a project in Visual Studio 2008 [duplicate]

假如想象 提交于 2020-01-02 03:34:08
问题 This question already has answers here : How can I rename a project folder from within Visual Studio? (32 answers) Closed 5 years ago . I always find my self in trouble with a lot of namespace or reference errors when trying to rename a project in VS. This is how I do it: I click on the project and press F2 and rename it. What procedure do you guys follow? I used to work in Eclipse, and there I don't have the problems. Maybe it's easy in VS too and it's just me. 回答1: Renaming the assembly