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
3
votes
5 answers

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 only has one copy of .NET 2.0, or 3.0, or 3.5 or…
Erx_VB.NExT.Coder
  • 4,838
  • 10
  • 56
  • 92
3
votes
1 answer

Increase the Height of Column Header in a Windows Forms DataGrid (Not DataGridView)

I am working on a Windows Forms application and I have a DataGrid for which I am trying to increase the height of the column headers. I know how its done for a datagridview but I am unsure about the DataGrid. I have a column named Actual \n Qty, and…
DoIt
  • 3,270
  • 9
  • 51
  • 103
3
votes
1 answer

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 event handler (Global.asax). This thread must run…
Ladislav Mrnka
  • 360,892
  • 59
  • 660
  • 670
3
votes
6 answers

Picture box goes blank

In VisualBasic.Net When I activate a picture box and then draw something on it, it draws and then immediately goes blank. Works fine when I re-draw it, but almost always messes up the first time I draw on it. This has happenned with several…
Mike Moyle
3
votes
4 answers

HttpModule - get HTML content or controls for modifications

Tried something like this: HttpApplication app = s as HttpApplication; //s is sender of the OnBeginRequest event System.Web.UI.Page p = (System.Web.UI.Page)app.Context.Handler; System.Web.UI.WebControls.Label lbl = new…
noesgard
  • 5,917
  • 3
  • 20
  • 27
3
votes
3 answers

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 me? Thanks. EDIT: The pretty obvious way of…
Hamish Grubijan
  • 10,562
  • 23
  • 99
  • 147
3
votes
2 answers

How insert page break in rtf files using asp.net with c#.net version 1.1?

How insert page break in rtf files using asp.net with c#.net version 1.1?
Avinash
  • 3,231
  • 10
  • 36
  • 46
3
votes
5 answers

Sql ORDER BY alphabetically no casesensitive

Today I encountered problem that causes difficulty for me to solve it. In application I want to display records in aphabetical order thus in SQL statement I'am using ORDER BY, But it looks like CAPITAL letters are before lowercase letters so record…
user3455363
  • 408
  • 1
  • 5
  • 13
3
votes
4 answers

Splitting 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 because the separating character is the ||| and just get…
Dilbert789
  • 864
  • 2
  • 14
  • 29
3
votes
2 answers

ArrayList Search .net

Following is the format of the data stored in my arraylist. A-Amsterdam B- Brussels C-Canada so and so forth. I wan to search my array list by passing just the first few characters till '-' So if i have something like AA-Test then i want to pass…
jsp
  • 2,546
  • 5
  • 36
  • 63
3
votes
1 answer

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 from them. I know that I can't call .NET 2.0 in…
pedrofernandes
  • 16,354
  • 10
  • 36
  • 43
3
votes
1 answer

Is there a .Net 1.1 compatible String.GetHashCode implemented in .Net 2.0 code?

I have an existing app in which I made the mistake of using String.GetHashCode and persisting it to disk. Now that I'm upgrading the app to .Net 2.0 I find that that decision has come back to bite me in the butt. I'm interested to know if anyone…
Steve Hiner
  • 2,523
  • 3
  • 24
  • 33
3
votes
2 answers

IIS 5, Migration from .net 1.1 to .net 2.0?

My client is using IIS 5.0 and .NET 1.1 on their Windows Server which is reaaally old! Just wondering what are the risks of upgrading the server from .NET 1.1 to .NET 2.0? and would IIS 5.0 support .NET 2.0?
The Light
  • 26,341
  • 62
  • 176
  • 258
3
votes
1 answer

Error while running .Net 1.1 Application in visual studio

I get the following message when I try to run a .net 1.1 web application in Visual Studio 2003: Error while trying to run project.Unable to start debugging on the web server. There is no managed code running in the process. In order to attach a…
Anshuman Jasrotia
  • 3,135
  • 8
  • 48
  • 81
3
votes
0 answers

Accessing the .Net 4.0 Com from .Net 1.1 Project

Possible Duplicate: how to integrate .net library (.dll) from higher version (.net 4) with binaries from lower version (.net 2) I got an old .Net 1.1 dll that i converted it to .Net 4.0. And it will be used by old .Net 1.1 code using…