.NET Framework 3.0, formerly called WinFX was released on 21 November 2006. There are no major architectural changes included with this release; .NET Framework 3.0 uses the Common Language Runtime of .NET Framework 2.0

learn more… | top users | synonyms

1
vote
1answer
22 views

In .net3 wcf the wsdl output has a xmlns:i0 that is used in the wsdl:service wsdl:port binding where do I make changes so it uses my target namespace

In .net3 wcf, the wsdl output has a xmlns:i0 that is used in the wsdl:service wsdl:port binding where do I make changes so it uses my target namespace (xmlns:tns) also the wsdl:binding element is ...
1
vote
0answers
234 views

Webbrowser Control - Dealing with popups that use javascript

after much research I've been trying to find a code that not only captures popup links in the webbrowser for it to navigate in, but also works on javascript codes that open new windows or popups. i ...
2
votes
4answers
126 views

Where are the .NET framework 3.0 tools like msbuild.exe?

When I enumerate the Microsoft.NET Framework directories, there aren't any for .NET v3.0. PS> Resolve-Path c:\windows\Microsoft.NET\Framework\*\msbuild.exe Path ---- ...
2
votes
5answers
200 views

Order IEnumerable without LINQ

Can you advice any solution of how to sort IEnumerable<byte> indexes in .NET 3.0 (no LINQ)? Of course it is possible to determine indexes length, create array, copy element-by-element, then call ...
0
votes
1answer
224 views

WCF 3.0 WebService + CRUD

I'm going to create WCF web service using .net framework 3.0. This web service will expose CRUD operation to database as well as it will have some web methods that consume other web services to ...
8
votes
1answer
293 views

Can I use extension methods and Linq in .NET 2.0 or 3.0?

When I try to add a extension method using the .NET 2.0 or 3.0 runtime I get the error: Cannot define a new extension method because the compiler required type ...
0
votes
1answer
517 views

Failed to find or load the registered .Net Framework Data Provider : VS2008

I am running an application with Target Framework 3.0 on VS 2008 and getting this error:Failed to find or load the registered .Net Framework Data Provider I have IBM Data Server Client v9.5.302.513 ...
2
votes
1answer
344 views

How do I extract a LinkedListNode<T> from a LinkedList<T>

I have a LinkedList that I am using to track consecutive numbers that are sent to this class. (I ultimately want to find the missing numbers). I now need to use the method ...
1
vote
1answer
73 views

How to stop the speech syntheziser?

How do I STOP the System.Speech.Synthesi.Syntheziser? There are build in methods for pausing and resuming,but I don't see how to totally stop the engine. when I use the SpeakAsyncCancel method the ...
2
votes
2answers
113 views

c# how to detect multiple space in file

I want to ignore a line which is either empty , null or just have space or spaces (white spaces).the keyword here is multiple space. I have tried below codes without success if ...
0
votes
1answer
194 views

Can I use Async CTP with .NET 3.0?

Can I use new AsyncCtpLibrary.dll with .NET 3.0? If I add this library in References, will it work? I need to use async/await/task functions in a new project.
0
votes
2answers
702 views

How to pass credentials from one web service to another?

I currently have an app that calls a web service(WS1), which in turn calls another web service(WS2) to get/set information on the server hosted on WS2. I would like to be able to pass in the user ...
0
votes
3answers
133 views

Displaying lines from a text file in rank order

I have a text file which contains several lines, many of them duplicates. I want to depict a list in which the ones which appear the most appear at the top and the least at the bottom. However, I ...
0
votes
2answers
486 views

DependencyProperty PropertyChangedCallback wiring

I have a user control with a UniformGrid that has a number of Buttons. I want to assign the same handler to each Button's Click event. So, I added the following to the User Control: public ...
0
votes
2answers
783 views

WPF Grid Row Height Auto

This seems close to some other questions I've seen out here, but not close enough... I have a grid with three rows. The first row holds a custom grid that I want to have as much space as possible. ...
1
vote
3answers
3k views

.NET Framework 3.0 App on Windows XP SP3 with .NET Framework 4.0

My app has a Target .NET Framework of 3.0. I have a PC with a fresh install of Windows XP SP3. Next, I installed .NET Framework 4.0 Full on it. When I try to run my ClickOnce-deployed app, I get ...
0
votes
6answers
1k views

Parameterised DataTable Split

I wrote a method for splitting a DataTable into multiple small data tables; however I am getting exception. How do I correct it? Please share the code. Exception message: This row already belongs ...
4
votes
2answers
2k views

Simple .Net based HTTP server

I'm new to .net programming. please can anyone assist me on any .net based simple http server code to implement on my application.
3
votes
2answers
684 views

Is there any reason GDI+ would be slower on a 64-bit Operating System (or maybe it's Windows 7 related)

Background I'm working on an application that is supposed to work on every windows platform from XP onwards in the same manner. Through the .NET framework this has been very easy, for the most part. ...
1
vote
1answer
582 views

WPF Application deployment XAML parsing errors - .NET Framework version issue

I created a new WPF application with target framework as .NET Framework 3.0. I developed WPF windows some of which used DropShadowBitMapEffect for Border tag: <Border CornerRadius="20" ...
1
vote
1answer
158 views

Use a text file as storage for a very simple web application, how to do locking?

I have a very simple web application that have to read and write in a text file. Basically, for each request the app looks for a specific line, if the line doesn't exists... it creates it. Not to ...
0
votes
3answers
89 views

Is it better to store your information in a single parent class or a central static class

I am wondering which is a better way to store information? A central static class or in a parent class? The code for the way I am storing it now. I instanciate a new class everytime. Parent Class: ...
0
votes
2answers
214 views

Can't find Html.TextBox

I am trying to get an old application that was written using a mvc preview version and have run in the following problem. <%= Html.TextBox("Register_Name", ViewData.Model.Register.Name, 20, 30, ...
0
votes
4answers
245 views

Is there a “data type” to that can store both Combobox items and ListBox items?

What I am trying to do is pass a list of items to a method rather than the item itself.
1
vote
3answers
81 views

How to get an XML value out of another XML value at C#

Heey, :) I need to get a value out of an XML file... I have this xml file for example: <?xml version="1.0"?> <hwids> <user> <userName>Ivar</userName> ...
1
vote
2answers
1k views

.NET 3.5 feature unavailable in Windows Server 2008 - only option is 3.0

I have an application I need to install in Windows Server 2008. It requires .NET 3.5 or higher and after running Windows Update I've got version 4.0 installed. However, in 'Add Features' the only ...
1
vote
2answers
729 views

How to get DNS name in load balancing environment?

I have 4 servers participating in load balancing environment. The same ASP.NET application is being hosted in each server. I would like to get the DNS Name regardless of the underlying server. Which ...
1
vote
4answers
492 views

List<Of T> Distinct in .NET 3.0?

NET 3.0. Is there a Distinct on List(Of T)? What packages would I need to import? If not, is there an equivalence?
1
vote
4answers
8k views

Close form after 10 seconds

I have a windows form application that will open other forms, but will only display the forms for a few seconds (user configurable). I would normally do something like threading.thread.sleep(n), ...
2
votes
3answers
771 views

Is there a way to use LINQ query syntax with .NET 3.0 projects?

I have a project which can only be deployed on a server running .NET 3.0. I desperately want to use LINQ to simplify some excruciatingly tedious logic. Is there a simple way to accomplish this? I'll ...
4
votes
4answers
5k views

Disable mouse scroll wheel in combobox VB.NET

Does anyone know of a way to disable the mouse scroll wheel when a control such as a combobox or listbox has focus? For my purposes, combobox is all I need the answer for. I have a combobox set to ...
1
vote
3answers
949 views

Dispatcher.Invoke not working in .NET 3.0 SP1

I am developing a WPF windows application and am getting into a trouble running the app in .NET 3.0. Everytime that I try to access the System.Windows.Threading.Dispatcher.Invoke() method, I get a ...
2
votes
3answers
3k views

How to deploy a ClickOnce .NET 3.5 application on a .NET 3.0 machine?

I have .NET 3.5 SP1 WPF application which I'm successfully deploying to client computers using ClickOnce. Now I got a new requirement - one of our clients need to run the application on machines ...
7
votes
4answers
266 views

What version of the .NET framework ahould I target?

I'm a desktop C# developer (that is not ASP) and am wondering about version targeting for small personal projects. These are, of course, trying to reach as wide an audience as possible, and so I've ...
54
votes
6answers
11k views

What's the difference between IQueryable and IEnumerable

I'm confused as to the difference. Being fairly new to .Net, I know I can query IEnumerables using the Linq extensions. So what is this IQueryable and how does it differ?
5
votes
3answers
609 views

Why is there no ObservableKeyedCollection<TKey, TValue> in the .NET Framework?

The .NET Framework contains since version 3.0 the ObservableCollection<T>, but why isn“t there a ObservableKeyedCollection<TKey, TValue>. Okay i could implement my own collection by ...
1
vote
1answer
511 views

Using MVVM design pattern in .Net 3.0

I have been looking into MVVM design patterns with WPF for a project. I have so far looked at MVVM light, MVVM Foundation, and the WPF Model-View-ViewModel Toolkit. I have a requirement to keep it ...
0
votes
2answers
171 views

Italicizing characters in a RichTextBox

I found how to make text bold in code: richTextBox1.Rtf = @"{\rtf1\ansi This is in \b bold\b0.}"; But I also need how to make text italic. Google doesn't give me much. I tried this (similar to ...
0
votes
4answers
591 views

ASP.NET - Learning .NET Framework 3.0 / 3.5

I would like to learn ASP.NET (Complete .NET Framework 3.0 / 3.5) and not getting time to attend training classes in any training center. Kindly let me know if you know if there are any other good ...
1
vote
3answers
697 views

User advantage for .NET 3.5 over .NET 3.0

I've seen many questions on SO about .NET 3.5 advantages, but these are more leaned towards language features and easier development. Are there any non-developer-wise advantages for using .NET 3.5? ...
4
votes
2answers
405 views

Does WCF require configuration to handle different methods of authentication?

A WCF service has been written and can be hosted in any web site. These web sites could use Windows, Kerberos, or Forms authentication. Is any particular configuration or development required within ...
3
votes
3answers
1k views

how many people have .net framework 3.5 installed?

I am building a .NET application and considering deploying it through XBAP. This requires that the users have .NET 3.0 - 3.5 installed on their machine. Are there any kind of estimates of how many ...
0
votes
1answer
483 views

ASP.NET 2.0 Website uses .NET framework 3.0 DLL

We are developing ASP.NET site in VS.NET 2005. This site is will be hosted on server which has .NET 3.0 installed and in IIS, ASP.NET 2.0 would be selected under ASP.NET tab. We would use external ...
3
votes
4answers
2k views

Download file from web to local file with progress meter in C#

I have a small app that downloads some files from a remote (HTTP) server to the users local hard drive, some of the files are large, but I don't know just how large at run time. Is there any method ...
0
votes
1answer
71 views

ironpython installation problem

.net 3.0 is installed, but ironpython is still showing '.net 2.0 sp1 is required or later'
0
votes
3answers
537 views

Does the .NET 3.0 SP1 installer also install .NET 2.0 and 3.0?

.NET 3.0 "wraps" .NET 2.0 so if I'm starting out with a clean Windows Server 2003 environment, will the .NET 3.0 SP1 installer also install .NET 2.0 and 3.0? What about .NET 2.0 SP1? Assume I don't ...
1
vote
2answers
233 views

Is it even possible to do a JSON call in WCF (.NET 3.0)?

Looking over the web, I am finding no answer to this question. I see it being asked and a lot of people being referred to .Net 3.5; however, I am not seeing anything resembling an answer with in the ...
0
votes
4answers
2k views

Unable to call a WCF service directly (.NET 3.0)

I'm working with WCF (VS2005, .Net 3.0) and want to test out a service by directly calling it via a web browser instead of from code. I have one method decorated with the OperationContract attribute ...
2
votes
2answers
2k views

Differences between .NET 3.0 & 3.5?

What are the major differences between the .NET 3.0 & 3.5 frameworks?
2
votes
4answers
956 views

.NET 3.5 vs. .NET 3.0

I want to write a program in WPF but not sure should I target .net35 or .net30. The advantages of .net35 are obvious. But still, I see one major advantage of .net30 -- it's built into Vista, so, the ...

1 2