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

Should I support ASP.NET 1.1?

I've just started working on an ASP.NET project which I hope to open source once it gets to a suitable stage. It's basically going to be a library that can be used by existing websites. My preference is to support ASP.NET 2.0 through 3.5, but I…
jammycakes
  • 5,780
  • 2
  • 40
  • 49
3
votes
2 answers

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 with a web site that uses .Net 1.1. Thanks
Jon
3
votes
1 answer

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 DoWork. I know I must create a thread in the…
PedroC88
  • 3,708
  • 7
  • 43
  • 77
3
votes
4 answers

Visual Studio 2008 does not show any "obsolete"-warnings

Duplicate: Why are C# collection-properties not flagged as obsolete when calling properties on them? I just migrated a .NET 1.1 project to .NET 2.0 using Visual Studio 2008. I know that there are references to obsolete methods in the project. But…
Hinek
  • 9,519
  • 12
  • 52
  • 74
3
votes
2 answers

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* myTreeView = new TreeView(); TreeNode* myTreeNode =…
Jon Hallin
  • 508
  • 3
  • 9
3
votes
4 answers

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 Goal I currently have an application with 3…
Eric H
  • 1,100
  • 16
  • 32
3
votes
5 answers

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?
Kb.
  • 7,240
  • 13
  • 56
  • 75
3
votes
2 answers

ComboBox Text Align Vertically Center

I created the custom combobox on .net framework 1.1, i can custom draw dropdown items, but i can't set or draw the combobox text on Middle Left , combobox text always render top left , but i need text should be render on middle left.…
Vignesh Nethaji
  • 374
  • 3
  • 15
3
votes
2 answers

How to disable specific column Sorting in Datagrid?

In winforms .Net Framework 1.1, is there any way to disable sorting on specific column in datagrid. If I try to set Allow sorting equal to false, then it disable sorting in all columns. But I need to disable specific columns in the…
Vignesh Nethaji
  • 374
  • 3
  • 15
3
votes
3 answers

Excel Programming: Exception from HRESULT: 0x800A03EC. at Microsoft.office.Interop

I have created a small application which opens,reads and creates Excel files. The app has been written in C# and I don't know why I get this error message when the application is running in one computer. I have run the same applicaiton on my…
SergioKastro
  • 875
  • 4
  • 15
  • 22
3
votes
4 answers

how to use RegularExpressionValidator on textbox

I have an text box i need to validate so that the user can enter enter up to four character and they can be alphanumeric. I am using VS2003, .NET 1.1. Please let me know what is the expression i should use to validate this condition any help would…
happysmile
  • 7,537
  • 36
  • 105
  • 181
3
votes
4 answers

Run a .net framework 1.1 program under .net framework 4.0

I want to run the freeware version of codesmith (2.6, that has been built on .net framework 1.1) on Windows Server 2008 r2 64bit There is a way to force it run under the .net framework 4.0? The .net 1.1 installer says there are compatibility issues…
Magnetic_dud
  • 1,506
  • 2
  • 22
  • 36
3
votes
2 answers

C# Convert DataView to Table (DataTable) in .NET 1.1

I have a dataview on which I have set a rowfilter: DataView dv = ds.Tables[0].DefaultView; dv.RowFilter = "here my filter"; Once data filtered, I want to convert it to a DataTable. I know this is possible in .NET 2.0 and above, using it: Datatable…
Willy
  • 9,848
  • 22
  • 141
  • 284
3
votes
8 answers

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 beginners, but for someone who already familiar with .net,…
ogee
  • 917
  • 1
  • 6
  • 11
3
votes
1 answer

Response.Redirect weird behavior in IE 8

Here is the scenario where I'm using Response.Redirect.. Base website calling a SSO using httpwebrequest to third party website - Get a key. Once base website get's the key - base website redirects the client browser to the third party website with…
Broken Link
  • 2,396
  • 10
  • 30
  • 47