I'm working on an old web application in Visual Studio .Net 2003 (yeeich) and I'm having an issue with a Checkbox that will not set the Visibility to True.
It's declared as such:
Protected WithEvents chkTraining As System.Web.UI.WebControls.CheckBox
and
<asp:CheckBox id="chkTraining" runat="server" Visible="False"></asp:CheckBox>...
I have developed an application using Visual Studio 2003. I have been told the hosting environment will be of a Windows Server 2008. Does it support my application?
...
I'm in the process of Moving a project from Visual Studio 2003 to 2005 and have just seen the
The event Click is read-only and cannot be changed
when using inherited forms regardless of the Modifier on the Base Forms Controls will make all the Controls from the Base Readonly in the designer (Though in 2003 it didn't work this way)...
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 Re...
My Question is related to access the rows in one page and putting conditions in another page.
I need to check whether a datagrid has row in it or not. DataGrid is in .aspx page. Based on this checking i need to write a condition in .ascx page.
the .ascx on which condition is checked is linked to .aspx page. Meaning that UserControl1.a...
I'm having problems in Visual Studio 2003 with the following:
void foo(const char*& str, ...) {
va_list args;
va_start(args, str);
const char* foo;
while((foo = va_arg(args, const char*)) != NULL) {
printf("%s\n", foo);
}
}
When I call it:
const char* one = "one";
foo(one, "two", "three", NULL);
I get:
...
I need to be able to write a DLL in either C# or VC++ that is accessible from code that is written in Visual Studio 2003 VC++. It looks like the code is unmanaged (uses * for pointers) VC++ and this DLL needs to be able to drop right in and be accessed by the current code.
The DLL is an RS232 driver that needs to be able to return an i...
Hi,
I have 2 datagrid (using .net 1.1). I need to access column of second grid ( i need to make a column of second grid as disabled) when i click "Cancel" link button in First Grid.
How can this be done?
...
Hi,
I have datagrid from where i need records to export to excel. I have follow the code from
http://www.c-sharpcorner.com/uploadfile/dipalchoksi/exportaspnetdatagridtoexcel11222005041447am/exportaspnetdatagridtoexcel.aspx
This works perfect but with only one issue. When i export into excel, i see the paging (...10,9,8,7,6,5,4,3,2,1)...
I am building a project in Visual Studio 2005 that require some libraries that were built in Visual Studio 2003. I'm getting linker errors like
msvcprt.lib(MSVCP80.dll) : error LNK2005: class std::basic_string[...]already defined in libdiguy.lib(bdiNavMesh.obj)
I believe that my program and the libraries are both compiled dynamically ...
By mistake I think touched some file (dont know the name) in the following folder..
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322
ever since then, I keep getting the following error...
Project 'xyz' could not be opened because the Visual C# .Net Compiler could
not be created. Loading the .projdata file failed or the disk is full.
Thi...
This is related to Classic ASP code.
A page fetches data for a particular ProjectCode.
There is a general text field which shows the Site-Location for selected Project-Code. I want to change it to drop down, so that a user can change the Site-Location from options available (fetched from DB) and then save it. Also, on page load the Sit...
I have a property sheet that I'm adding to projects in VS2005 but I found out that some of the projects are from VS2003. Is there a way that I can add this same property sheet to these VS2003 projects?
...
Hi,
I installed visual studio 2003 on windows 7.But I am getting following error on when I press the F5 for debugging.
Thanks
Error while trying to run project: Unable to start debugging on the web server. Could not start ASP.NET or ATL Server debugging.
Verify that ASP.NET or ATL Server is correctly installed on the server.
...
anyone managed to install mcms 2002 on windows 7 ?
i tried installing vs.net 2003 n also 2005(using registry trick), but still the setup program cant detect vs.net already install on the system.
...
I have a project that consists of a bunch of dynamically loaded modules. Originally, everything was always built with MSVC 2003, but lately I've been working on getting it to work with GCC. Everything has been going pretty smoothly, except for one problem. For 64-bit code, GCC and MSVC don't agree about what a va_list is. For 32-bit,...
Disclaimer:
I apologize if this is not an appropriate question to ask here... I saw some similar ones that were answered on here but not this exact question.
Question:
Anyway... Does anybody know how I can delete a workspace in Visual Studio 2003? I brought a project over from source control but now I'm trying to change the local path t...
I'm (unfortunately) using VS 2003 to develop for some Windows CE .NET 4.1 mobile devices. The app is written in .NET Compact Framework 1.0 (the OS cannot support any later version of the .NET CF).
Whenever I run my app from Visual Studio, it copies/tries to install .NET CF 1.0 to my device:
Copying netcf.all.wce4.armv4t.cab
It takes ...