Questions tagged [.net-3.5]

The 3.5 version of the .NET Framework, which is based on the 2.0 .NET Framework with extra assemblies (including 3.0). Use for questions specifically related to .NET Framework 3.0. For questions on .NET Framework generally, use the .net tag.

The 3.5 version of the Microsoft .NET Framework, which is based on the 2.0 .NET Framework. In addition, it installs .NET Framework 2.0 SP1, (installs .NET Framework 2.0 SP2 with 3.5 SP1) and .NET Framework 3.0 SP1 (installs .NET Framework 3.0 SP2 with 3.5 SP1).

What's New in .NET Framework 3.5
.NET Framework 3.5 System Requirements

Released by Microsoft Corporation
Version Number: 3.5.21022.8
Release Date: 2007-11-19

5938 questions
3
votes
1 answer

How do I synchronize 2 processes in threads so they run together?

I currently have this code (thanks for the help from here). I need to create the first ProcessMessage as a thread and run the second ProcessMessage synchronously (on the current thread), then perform the Join on the single thread. Otherwise, I'll…
Ree
  • 81
  • 1
  • 7
3
votes
1 answer

SqlBulkCopy with Informix

Is there any way to use the SqlBulkCopy class with Informix database, or any alternative, because really I need this class behavior with my Informix database. What I try to do is described in SO 6856004. EDIT : I don't find IfxBulkCopy at all.
Anyname Donotcare
  • 11,113
  • 66
  • 219
  • 392
3
votes
1 answer

Writing real-time output to a window or text pane during MSTEST

I'm using the Trace facility to do logging, and I'd like the log output to appear in a window or text pane somewhere in Visual Studio during the test. What is the simplest way to achieve this? Debug.Print() statements only show up at the end of the…
Robert Harvey
  • 178,213
  • 47
  • 333
  • 501
3
votes
1 answer

How do I determine when all of my threads have finished executing?

I have an architecture that reads packets from a packetized binary file, assigns each packet to an individual processing pipeline based on the packet type, and reassembles the packets into a new file on the other side of the pipelines. Each…
Robert Harvey
  • 178,213
  • 47
  • 333
  • 501
3
votes
4 answers

Upsidedown Vertical Progress Bar?

I wanted to do a Vertical Progress Bar so i found this: Vertical progress bar But now like if you have Horizitonal Progress Bar you can make it work from LeftToRight / RightToLeft so i want my Vertical one to Work from UpToDown and not from DownToUp…
Danpe
  • 18,668
  • 21
  • 96
  • 131
3
votes
8 answers

Generate and handle user messages inside methods?

What is the best way to handle a function that might occasional fail to evaluate, but even when it does fail does not require a halt of the parent routine, though sometimes might require an explanation to the user? I have such a function, deep in my…
Tekito
  • 840
  • 8
  • 24
3
votes
3 answers

How to convert a list of ints to a string array in Linq?

i have the an IList and i wish to turn it into a ToArray() string result. Currently i have to do the following :( List values = new List(); foreach(var value in numberList) { values.Add(value.ToString()); } ... string blah…
Pure.Krome
  • 84,693
  • 113
  • 396
  • 647
3
votes
1 answer

Request.ServerVariables from a webservice (asmx)

On my serverside pages (intranet environment), I use the following code to find out which user is using the page: Request.ServerVariables("LOGON_USER") How do I use that command in a webservice (asmx file)? I can't use the line above as I get a…
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
3
votes
1 answer

Pre-instantiate prototypes in spring.net

Context: I have a set of View/Presenters and I've noticed that for complex views I get some performance issues at the time of the InitializeComponent() call Is there any way to instruct the spring container to pre-instantiate objects scoped as…
Sebastian Piu
  • 7,838
  • 1
  • 32
  • 50
3
votes
6 answers

Threading.Tasks analog in Rx extensions in .NET 3.5?

Is it possible to use Reactive Extensions (Rx) to create applications in .NET 3.5 that perform parallelization or is it limited in some way? I downloaded Rx from here http://www.microsoft.com/download/en/confirmation.aspx?id=26649 and after creating…
Blablablaster
  • 3,238
  • 3
  • 31
  • 33
3
votes
4 answers

Is it possible to somehow upgrade .NET versions without upgrading Visual Studio versions?

I currently use Visual Studio 2005 for all my personal projects, which means I'm also working with the .NET 2.0 framework. As one could imagine, it's getting that outdated feeling to it. I got this version of VS for free through MSDN's academic…
DWilliams
  • 451
  • 8
  • 22
3
votes
1 answer

LINQ Conflict Detection: Setting UpdateCheck attribute

I've been reading up on LINQ lately to start implementing it, and there's a particular thing as to how it generates UPDATE queries that bothers me. Creating the entities code automatically using SQLMetal or the Object Relational Designer, apparently…
Daniel Magliola
  • 30,898
  • 61
  • 164
  • 243
3
votes
4 answers

AccessViolation exception when form with AxWindowsMediaPlayer closed

I have a AxWMPLib.AxWindowsMediaPlayer on a form. When I close the form, I get "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." exception. It is OK with hiding the form but not with closing.…
David
  • 830
  • 3
  • 13
  • 25
3
votes
3 answers

how to convert date from yyyyMMdd format to mm-dd-yyyy format using DateTime.TryParse

I have a string which contains date in yyyyMMdd format. I want to convert that date into system date format, using ConvertTo.DateTime() method or any other simple method. I've used: string time = "19851231"; DateTime theTime=…
Sachin Kalia
  • 1,027
  • 14
  • 24
3
votes
1 answer

Utility class for handling event subscriptions (AddSubscription()/UnsubscribeAll())

I frequently end up writing SubscribeToEvents() and UnsubscribeEvents() functions that are called in my property setters when a property gets a new value. Although the code to do this is quite simple it feels unnecessary to me as it's basicly…
larsmoa
  • 12,604
  • 8
  • 62
  • 85