Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
14answers
2k views

Why not upgrade to the latest .NET framework?

I see a lot of people have .NET 2.0 or even 1.1 as a requirement for their projects. In my own workplace there is also lots of skepticism for upgrading to the latest and greatest .NET framework. As ...
8
votes
5answers
8k views

SqlDataAdapter.Fill method slow

Why would a stored procedure that returns a table with 9 columns, 89 rows using this code take 60 seconds to execute (.NET 1.1) when it takes < 1 second to run in SQL Server Management Studio? ...
7
votes
3answers
207 views

Get Encoding list in .NET 1.1

I need to retrieve a list of supported encodings, but I'm using .NET 1.1, so the following call is not available: using System; using System.Text; public class SamplesEncoding { public static ...
7
votes
2answers
2k views

Does DataAdapter.Fill() close its connection when an Exception is thrown?

I am using ADO.NET (.NET 1.1) in a legacy app. I know that DataAdapter.Fill() opens and closes connections if the connection hasn't been opened manually before it's given to the DataAdapter. My ...
6
votes
3answers
160 views

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 ...
6
votes
5answers
1k views

What's the best alternative to int.TryParse for .net 1.1

What's the best way to do the equivalent of int.TryParse (which is found in .net 2.0 onwards) using .net 1.1.
6
votes
3answers
215 views

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 ...
6
votes
7answers
1k views

What is the best approach for (client-side) disabling of a submit button?

Details: Only disable after user clicks the submit button, but before the posting back to the server ASP.NET Webforms (.NET 1.1) Prefer jQuery (if any library at all) Must be enabled if form reloads ...
5
votes
3answers
160 views

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 ...
4
votes
4answers
85 views

Regex to match a path in C#

I'm new with RegularExpressions, and I'm sure that you experts can help me. I need to extract the path from the following lines: XXXX c:\mypath1\test YYYYYYY c:\this is other ...
4
votes
1answer
149 views

Migrating down from .NET 2.0 to .NET 1.1 - DllImport no longer works

One of our apps is in C#/.NET 1.1/VS2003 and needs to remain as is :-( I need to use code from another C# assembly that is in .NET 2.0: because of technical restrictions (.NET 1.1 mandatory, so ...
4
votes
5answers
442 views

Will .NET Framework 1.x apps run on PC's with .NET 4.0 only?

Basically, i am trying to determin if an application made for 1.x will run on a computer with just one copy of the .NET framework installed which is a higher version than what i am targetting, ie: it ...
4
votes
7answers
903 views

“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 ...
4
votes
2answers
218 views

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 ...
4
votes
9answers
1k views

What other improvements in .NET's Dictionary vs. HashTable besides [un]boxing?

Trying to convince someone to switch from .NET 1.1 I saw people saying that one advantage of using the Dictionary class in post .NET 1.1 is performance increases due to not having to unbox/cast ...
4
votes
2answers
438 views

How to inspect XML streams from the debugger in Visual Studio 2003

I've got to edit an XSLT stylesheet, but I'm flying blind because the XML input only exists fleetingly in a bunch of streams. I can debug into the code, but can't figure out how to get the contents of ...
4
votes
6answers
6k views

Finding out Windows service's running process name .NET 1.1

We are using a badly written windows service, which will hang when we are trying to Stop it from code. So we need to find which process is related to that service and kill it. Any suggestions?
4
votes
6answers
1k views

.Net 3.5 WebService can't be called by .Net 1.1 Windows App

I have a weird issue. I had a web service that was compiled under the 2.0 framework that was being consumed by a windows app that was compiled with the 1.1 framework. This worked just fine. Now, after ...
4
votes
5answers
5k views

Print out the keys and Data of a Hashtable in C# .NET 1.1

I need debug some old code that uses a Hashtable to store response from various threads. I need a way to go through the entire Hashtable and print out both keys and the data in the Hastable. How can ...
4
votes
2answers
5k views

Looking for best practice for doing a “Net Use” in C#

I'd rather not have to resort to calling the command line. I'm looking for code that can map/disconnect a drive, while also having exception handling. Any ideas?
3
votes
1answer
41 views

Implementing Custom BackgroundWorker

I'm trying to implement a BackgroundWorker in .NET 1.1 (since there isn't any) and I'm not quite versed in threading and delegates. Right now I have a class call BackgroundWorker with a method called ...
3
votes
2answers
112 views

Unable to programmatically expand TreeNode that is assigned to a TreeView

I am working with C++ and .NET 1.1. I have an issue with programmatically expanding TreeNode objects once they are assigned to a TreeView. When running the following code in debug mode: TreeView* ...
3
votes
4answers
495 views

Close a windows form without exiting the entire application

Environment Windows XP SP3 x32 Visual Studio 2005 Standard Device/Platform: Honeywell Dolphin 9500 with Windows Mobile/Pocket PC 2003 NET Framework 1.1 and .NET Compact Framework Framework 1.0 SP3 ...
3
votes
3answers
2k views

.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 ...
3
votes
1answer
209 views

Custom thread started in Application_Start

I have to deal with legacy ASP.NET application written in .NET Framework 1.1. When checking the application code I found interesting part. The application starts custom thread in Application_Start ...
3
votes
3answers
460 views

Spliting string with string C# .net 1.1.4322

How do I split a string with a string in C# .net 1.1.4322? String example: Key|Value|||Key|Value|||Key|Value|||Key|Value need: Key|Value Key|Value Key|Value I cannot use the RegEx.Split ...
3
votes
1answer
801 views

Calling .NET 2.0 assemblies in .NET 1.1

Recently I developed a internal framework in .NET 2.0 version, which is basically classes and helpers. The problem is I have some .NET 1.1 sites and applications and would like to use my framework ...
3
votes
2answers
1k views

XSL: How best to store a node in a variable and then us it in future xpath expressions?

I need to be able to store a node set in variable and then perform more filting/sorting on it afterward. All the examples I've seen of this involve either using XSL2 or extensions neither of which are ...
3
votes
3answers
797 views

How to return custom objects with WebServices

[Problem] Having created a shared library that is to be deployed on a server machine and client machine how do I communicate between the client-server with the classes provided by the library? ...
3
votes
2answers
1k views

How do I change Default Application Pool Setting Properties Programatically in .NET

I have to change some properties in the Default Application Pool of IIS 6.0 using C# and i am constrained to use code using .Net 1.1 Framework. I am restricted to .Net 1.1 coz my code has to be built ...
3
votes
4answers
3k views

web.config batch=“false”

What is the purpose of adding the batch="false" in the compilation tag in ASP.NET 1.1?
3
votes
4answers
723 views

Why can't dotnet 1.1 cast down after ArrayList.GetRange?

I'd like to create an array from range of values within an ArrayList but am getting the error "At least one element in the source array could not be cast down to the destination array type". Why ...
3
votes
5answers
2k views

Visual Studio 2005 and .Net framework 1.1

Is it possible to create and maintain a .Net framework 1.1 application with Visual Studio 2005?
3
votes
8answers
300 views

Need an exercise suggestions to help me learn and exercise .NET

Do you have any idea for a complex exercise that touches and covers most important and major concepts of .NET? (so I can learn while coding and implementation) The exercise should NOT be for ...
3
votes
4answers
870 views

Best practice for AJAX calls in .Net 1.1

Well, my latest contract is forcing me into the antique world of .Net 1.1. Since I have been using jQuery and Rails for quite a while AJAX like solutions to problem keep on popping into my head and ...
3
votes
5answers
1k views

Upgrading ASP.NET from version 1.1 to 2.0 - Any Gotchas?

I know we are really behind the times here, but we are just about to upgrade from .NET 1.1 to .NET 2.0. Thank you for your sympathy. Anyhow, are there any gotchas we should look out for? Do you ...
3
votes
7answers
1k views

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 ...
3
votes
5answers
2k views

Double postback problem

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 ...
2
votes
2answers
128 views

Memory Could not be Written Error on MSI

I'm trying to install an application using a VS Setup project for .NET 1.1 in Windows7 (with the .NET framework 1.1 already installed). The installer has 2 projects it uses for configurations, where ...
2
votes
4answers
132 views

.NET 1.1 consuming a webservice with nullable types, what to do?

I need to consume a WebService with .NET 1.1. The problem is that the webService return Null Values, and .NET 1.1 doesn't work with Nullable types. A piece of the WebService Schema <xs:element ...
2
votes
2answers
88 views

Do I need .NET 1.0/1.1 to run apps built on those versions, or can I upgrade to 3.5?

We have many new computers and have some needed old apps created using .net 1.0 and some created with .net 1.1. Will these apps work if I install only .net 3.5? The applications are desktop apps.
2
votes
3answers
128 views

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 = ...
2
votes
4answers
174 views

How to respond events while a threaded operation is running in .NET

I have a class to launch background operations in a WinForms application. I need to write this background worker since my requisites are using .NET 1.1, so I cannot use BackgroundWorker, that is only ...
2
votes
0answers
254 views

Trace a .NET 1.1 Web Service call [closed]

I'm having an issue trying to find an error with a web service using .NET 1.1. In .NET 2.0/3 I can add a trace section to my web config like: <system.diagnostics> <trace autoflush="true" ...
2
votes
1answer
146 views

c# convert string to single

i have a program running for a while and everything works fine till this weird thing happens. when i convert a number string to Single, i just can't get the value i want. for example: ...
2
votes
5answers
823 views

How do you make a .NET executable run as a 32-bit process on a 64-bit OS?

I want to make my .NET application run as a 32-bit process on a 64-bit machine with .NET1.1. The target platform option was introduced in later versions of VS(2005), but I am using VS2003 and .NET1.1 ...
2
votes
3answers
350 views

.NET 4.0 framework on same server as .NET 1.1

Can these framework versions work and play well on the same server? Meaning that can IIS support two application pools where one pool is configured with .NET 4.0 and the other with .NET 1.1. EDIT: ...
2
votes
1answer
65 views

Integrate Moodle and .net 1.1 application to single log on

My situation is, I have a .net 1.1 application to provide enrollment of courses, and some courses are provided by a moodle site. So when the user enrolls a course and he will be provided the URL link ...
2
votes
4answers
282 views

How to solve the performance decay of a VB.NET 1.1 application?

I have single-thread windows form application written with VB.NET and targeting Framework 1.1. The software communicates with external boards through a serial interface, and it mainly consist of a ...
2
votes
3answers
157 views

Is there a tool that can convert C# 1.1 Forms design to the more recent standard?

The old code, as we know, is dangerous because both GUI layout and business logic are mixed into one. Separating the two can be a tedious and an error-prone task. Is there a tool that can do this for ...

1 2 3 4 5