问题标签 [visual-studio-2003]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
78 浏览

visual-studio-2003 - vs2003:快速片段工具

我正在一个巨大的 vs2003 网站上工作。是否有一个快速的代码片段工具可以用来连接到我的开发数据库并测试我的代码的不同部分,而不是一遍又一遍地运行网站?

0 投票
3 回答
20327 浏览

windows - 在 64 位 Windows 7 上安装 Visual Studio 2003

我的团队目前支持 1.1 应用程序,我们正在 Windows 7 上安装 VS.NET 2003。我们在 32 位机器上没有遇到任何问题,但 FrontPage 服务器扩展无法在我的 64 位机器上安装。

其他人说他们已经成功地做到了这一点,所以我想知道这里是否有人有以及他们是否知道解决方案。

具体问题是 FPSE(澄清一下,我正在安装“用于 IIS 7.0 的 FrontPage 2002 服务器扩展”)无法正确安装。在 EventViewer 我收到错误:

Microsoft FrontPage 服务器扩展:

错误 #3004f 消息:无法读取 Microsoft Internet 信息服务器的配置信息:ImpersonateLoggedOnUser 错误。

我在 64 位上查找了 ImpersonateLoggedOnUser 的错误,并且确实发现了当 UAC 关闭时它在 64 位上失败的情况(我确实关闭了它)。我重新打开 UAC,以管理员身份运行命令提示符,然后在 FPSE 包上运行 msiexec。还是没有骰子。

我已按照本教程(以及它指向的其他教程)进行安装。

0 投票
2 回答
6037 浏览

visual-studio-2010 - TFS 2010 是否支持 Visual Studio 2003 和 2005 连接?

我无法找到与 Visual Studio 2003 或 2005 的兼容性的任何信息。我​​目前的 TFS 2010 与 Visual Studio 2008 一起正常工作,但我们有一些开发人员使用 Visual Studio 2003 和 2005 实例。

0 投票
3 回答
3198 浏览

asp.net - ASP.Net 复选框不允许将 Visible 设置为 True

我正在使用 Visual Studio .Net 2003 (yeeich) 中的旧 Web 应用程序,但我遇到了无法将 Visibility 设置为 True 的 Checkbox 问题。

它是这样声明的:

当我通过以下行进行调试时:

它通过它很好,但是当我在下一行检查这个值时,chkTraining.Visible = False. 这里可能发生了什么?没有事件触发或发生其他任何事情......这真的让我陷入困境。谢谢你的帮助。

0 投票
2 回答
85 浏览

visual-studio-2003 - 我可以在 ms windows server 2008 上托管在 ms visual studio 2003 中开发的应用程序吗?

我使用 Visual Studio 2003 开发了一个应用程序。有人告诉我托管环境将是 Windows Server 2008。它是否支持我的应用程序?

0 投票
1 回答
2399 浏览

vb.net - Visual Studios 设计器实现中的表单继承

我正在将一个项目从 Visual Studio 2003 迁移到 2005 并且刚刚看到

事件 Click 是只读的,不能更改

当使用继承的表单时,无论基本表单控件上的修饰符如何,都会使设计器中基本表单中的所有控件为只读(尽管在 2003 年它并没有以这种方式工作)。

我发现这篇文章提到此功能已被暂时“禁用” http://social.msdn.microsoft.com/Forums/en-US/winformsdesigner/thread/c25cec28-67a5-4e30-bb2d-9f8dbd41eb3a

谁能确认此功能是否已被使用?或者如何围绕它进行编程以能够使用基本控制事件并且仍然有设计器?

这是我发现的一种方法,但当它曾经为你做管道时非常痛苦。即使只是隐藏您现在手动执行的控件之一。

0 投票
1 回答
397 浏览

asp.net - Get ID in GridView

I have One grid say Grid 1 in which there are some columns. There is one view image button, one delete image button and one column which says that color column is Red or Blue.

If color column is Red the deleted button is hidden else its shown (Based on user given rights to delete a column or not).

Now a user clicks a view button for Red Color Column. If this condition is satisfied, then i want that delete icon should not be present in Grid 2.

Grid 2 has 2 columns. One is deleted image button and one is file name (which is uploaded via upload control).

So If in Grid One "View Image Button" is clicked for "Red" Column i should be able to hide the delete button from Grid 2.

I have tried by writing code in Item command but i am not able to access control of grid2. is this the correct way? Or else suggest me some correct way.

Please Make sure that code is compatible with VS 2003.

let me know if more inputs are needed.

Thanks

0 投票
1 回答
525 浏览

asp.net - 在用户控制页面中获取 DataGrid 行

我的问题与访问一页中的行并将条件放在另一页中有关。

我需要检查数据网格中是否有行。DataGrid 位于 .aspx 页面中。基于此检查,我需要在 .ascx 页面中编写条件。

检查条件的 .ascx 链接到 .aspx 页面。这意味着 UserControl1.ascx 是 Register with Default.aspx 页面

我正在使用 VS 2003

请指教

谢谢

0 投票
1 回答
960 浏览

c++ - 将引用作为命名参数传递给可变参数函数的问题

我在 Visual Studio 2003 中遇到以下问题:

当我调用它时:

我得到:

访问冲突读取位置 0xcccccccc

printf()线——va_arg()返回0xcccccccc。我终于发现它的第一个参数是破坏它的引用——如果我把它变成一个普通的 char* 一切都很好。类型是什么似乎并不重要。作为参考会导致它在运行时失败。这是VS2003的一个已知问题,还是有某种合法行为?它不会发生在 GCC 中。我尚未使用较新的 Visual Studio 进行测试以查看行为是否消失

0 投票
1 回答
234 浏览

visual-c++ - 编写一个可从 VS 2003 VC++ 代码访问的 dll

我需要能够用 C# 或 VC++ 编写一个 DLL,该 DLL 可以从用 Visual Studio 2003 VC++ 编写的代码访问。看起来代码是非托管的(使用 * 作为指针)VC++ 并且这个 DLL 需要能够直接插入并被当前代码访问。

DLL 是一个 RS232 驱动程序,它需要能够为错误代码返回一个 int,并通过引用将一些测量值传回给调用程序。

我什至可以用 C# 写这个吗?如果没有,我只能访问 Visual Studio 2005 或 2008。我可以在其中任何一个中编写我的代码吗?是否可以从当前代码库调用该 DLL?还是我必须在 ebay 上寻找 VS 2003 的副本?