Questions tagged [.net-1.1]

The 1.1 version of the .NET Framework. Use for questions specifically related to .NET Framework 1.1. For questions on .NET Framework generally, use the .net tag.

The 1.1 version of the .NET Framework.

Released by Microsoft Corporation
Version Number: 1.1.4322.573
Release Date: 2003-04-01

373 questions
7
votes
3 answers

How to Close a DataReader on Exception

I have the following code in some methods of my Data Layer: StringBuilder sb = new StringBuilder(); SqlCommand s = new SqlCommand(sb.ToString(), conn); try { SqlDataReader dr = s.ExecuteReader(); while(dr.Read()) …
apacay
  • 1,702
  • 5
  • 19
  • 41
6
votes
3 answers

Regex to match a path in C#

I'm new with regular expressions. I need to extract the path from the following lines: XXXX c:\mypath1\test YYYYYYY c:\this is other path\longer ZZ c:\mypath3\file.txt I need to implement a method that return the path of a…
Daniel Peñalba
  • 30,507
  • 32
  • 137
  • 219
6
votes
2 answers

How Can I Keep A C# Listview Control with Check Boxes from "Checking" on Row Selection?

Environment Windows XP x32 Visual Studio 2005 Standard Edition Honeywell Dolphin 9500 running Windows Mobile 2003 (Pocket PC 2003) With built in Barcode scanner and B&W camera Using their SDK located here. .NET Compact Framework 1.0 SP3 and .NET…
Eric H
  • 1,100
  • 16
  • 32
6
votes
3 answers

Can anything make life easier for a dotnet 3.5 coder trapped in a 1.1 world?

I have to spend a fair portion of my time developing in dotnet 1.1, and as I'm sure anyone in a similar position will appreciate, the more I get used dotnet 2.0 and above, the more annoying it is to go back to the early version. I'm getting…
stovroz
  • 6,835
  • 2
  • 48
  • 59
6
votes
3 answers

.NET Framework 1.1 on IIS 7

I have inherited a .NET Framework 1.1 web site that I must host with IIS 7 on Windows Server 2008. I'm having some trouble. 1. Installation I installed .NET Framework 1.1 following these instructions. The installation automatically created a new…
Zack Peterson
  • 56,055
  • 78
  • 209
  • 280
6
votes
5 answers

Process.StartTime Access Denied

My code needs to determine how long a particular process has been running. But it continues to fail with an access denied error message on the Process.StartTime request. This is a process running with a User's credentials (ie, not a high-privilege…
TheSmurf
  • 15,337
  • 3
  • 40
  • 48
6
votes
7 answers

Windows Service Increasing CPU Consumption

At my job, I have a clutch of six Windows services that I am responsible for, written in C# 2003. Each of these services contain a timer that fires every minute or so, where the majority of their work happens. My problem is that, as these services…
TheSmurf
  • 15,337
  • 3
  • 40
  • 48
6
votes
7 answers

"Best" way to communicate between .NET 1.1 and .NET 3.5

By best I mean: Cheapest development cost (1.1 project is unlikely to live > 6 months) Easiest migration to WCF or similar By communicate between I mean: Remote communication between computers Most likely no firewall restrictions With .Net 1.1…
Jack Ukleja
  • 13,061
  • 11
  • 72
  • 113
6
votes
5 answers

Double postback issue

I have a ASP.NET 1.1 application, and I'm trying to find out why when I change a ComboBox which value is used to fill another one (parent-child relation), two postbacks are produced. I have checked and checked the code, and I can't find the…
juan
  • 80,295
  • 52
  • 162
  • 195
5
votes
1 answer

How is IDisposable implemented on FileStream in .Net 1.1

This might seem like a noddy question, but I was looking at this because I heard someone claiming that you must call Close() on a FileStream, even if it is in a using block (and they have code where Close() is being called right at the end of the…
philsquared
  • 22,403
  • 12
  • 69
  • 98
5
votes
2 answers

Best tool to decompile a C# .Net 1.1 application

Possible Duplicate: A .net disassembler/decompiler Is there a “free” alternative to .NET Reflector? A good while ago we wrote C# .NET 1.1 application for a customer and during the process of office moves and redundancies, the source code was not…
TeamWild
  • 2,460
  • 8
  • 43
  • 53
5
votes
3 answers

Can you call a .NET 2.0 COM object from an ASP.NET 1.1 web app?

We have an ASP.NET 1.1 web application. It invokes a C++ COM object which in turn invokes a .NET COM object. Originally, this .NET COM object was a .NET 1.1 assembly. Now, we need to modify this .NET COM object and in the process we now use Visual…
5
votes
2 answers

Repository pattern with .NET 1.1

What is a typical approach to using the repository pattern with .NET 1.1 (C#)? I'm looking for something along the lines of this Stack Overflow question, except that in .NET 1.1, I don't have generics, so I'm just looking to see if it's possible…
Matthew Groves
  • 25,181
  • 9
  • 71
  • 121
5
votes
2 answers

Get a boolean value from DataTable

How do I retrieve a Boolean value in dataset, I'm using visual studio 2003,I am trying the following, but it's not working: //if product inactive, don't display, and redirect to main page …
Developer
  • 2,987
  • 10
  • 40
  • 51
4
votes
2 answers

OCX file does not deploy from MSI generated with Visual Studio 2003 on Windows 7

I have an legacy installation from a DotNet 1.1 application (with Visual Studio 2003) that will not deploy the msflxgrd.ocx file on the FIRST installation on Windows 7. If I uninstall the MSI and then run the same MSI again, (and future…
Sam
  • 669
  • 1
  • 13
  • 26
1
2
3
24 25