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

Will calling `SyncFolderItems` return items as they get received?

Does calling SyncFolderItems in a loop (until MoreChangesAvailable is false) return items that have been received after my first call to SyncFolderItems? For example, say I have 1,000 items in my mailbox and I make a call to SyncFolderItems with no…
gcso
  • 2,315
  • 3
  • 28
  • 50
3
votes
2 answers

SnapsToDevicePixels seems to not work in StackPanel

I have more expanders in StackPanel (Orientation=Vertical). When I expand one, the others below the expanded one seem to be blured. Like it would SnapsToDevicePixels=False. I think the problem could be in StackPanel because it doesn't support…
karel
  • 1,297
  • 1
  • 10
  • 22
3
votes
4 answers

How do I prepend a Stream?

I'm loading blobs out of a database as a byte array and I put them in a memory stream so that I can load them into an xmldocument for parsing. However there are blobs that have multiple root nodes, this causes the parser to blow up. My solution is…
Biff MaGriff
  • 8,102
  • 9
  • 61
  • 98
3
votes
1 answer

Visual Studio 2010: Properties.Settings broken after retargetting project to .NET Framework 3.5

i've changed a project to target .NET Framework 3.5 rather than .NET Framework 4. The project now crashes whenever i try to access settings: Settings.Designer.cs: return ((global::System.Drawing.Font)(this["DefaultFont"])); With the…
Ian Boyd
  • 246,734
  • 253
  • 869
  • 1,219
3
votes
4 answers

DataTable Select() with Guids

I am trying to boild my treeview at runtime from a DataTable that is returned from a LINQ query. The Fields returned are: NAME = CaseNoteID | ContactDate | ParentNote TYPE = Guid | DateTime | Guid The ParentNote field matches a entry in…
Refracted Paladin
  • 12,096
  • 33
  • 123
  • 233
3
votes
4 answers

.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 people using Windows Vista will not have to…
Pavel Bastov
  • 6,911
  • 7
  • 39
  • 48
3
votes
3 answers

Is it possible to define a left-handed ComboBox (ie. scrollbar on the left) in a winforms application?

I have a WinForms application that is being used on tablet PC's with touch screens. The application is developed with Visual Studio 2008 and used version 3.5 of the .Net framework. I have had a request from a left-handed client to put the scrollbar…
BruceHill
  • 6,954
  • 8
  • 62
  • 114
3
votes
1 answer

Entity Framework: Regeneration of changed tables (key changes)

I've got a pretty large DB hooked up to my Entity Framework. I've got one particular set of tables where a common key (fk) was deleted from the design. When I "update the model from the database", I get a series of errors about this now-missing…
bugfixr
  • 7,997
  • 18
  • 91
  • 144
3
votes
4 answers

ClickOnce download fails unless end user has VS2008

I'm still working on the problem described here, trying to get ClickOnce to work from Visual Studio 2008. I originally assumed the problem was related to the fact that the application I was deploying was upgraded from 2005. But that's not the case.…
John M Gant
  • 18,970
  • 18
  • 64
  • 82
3
votes
3 answers

How do I position an ellipse on a Silverlight Grid?

I am creating a silverlight application which will allow you to click at two places on the screen and will draw an ellipse whose major axis starts and ends at the click locations. The clickable area is a Silverlight Grid control. Currently: When you…
3
votes
1 answer

The event 'LostFocus' cannot be specified on a Target tag in a Style. Use an EventSetter instead

Why am I getting this error message? I'm using an event setter! edit I'm not using the style inline. It's in a resource,…
Alain
  • 26,663
  • 20
  • 114
  • 184
3
votes
4 answers

Animated GIF problem in WPF

I have added above code in my WPF from which include animated GIF image, the problem is whenever form load I don't find any of the Image displayed on form, any suggestions ??? I even…
Prashant Cholachagudda
  • 13,012
  • 23
  • 97
  • 162
3
votes
1 answer

Show Images in WPF ListBox

I'm trying to display images stored in MSSql Db as varbinary, when execute my code it just hangs itself Code is as follows... XAML
Prashant Cholachagudda
  • 13,012
  • 23
  • 97
  • 162
3
votes
5 answers

C# Custom Observable Collection - Should I use Composition or Inheritance?

I want to create a custom observable collection (can be bound to in XAML), but I want to track additional information which requires overriding observable collection methods. ObservableCollection methods are not virtual though, which means the only…
Alain
  • 26,663
  • 20
  • 114
  • 184
3
votes
2 answers

CheckedListBox - Collection of FileInfo objects - Display Custom ToString

I have a CheckedListBox in a WinForms app (3.5 runtime), and I am adding a bunch of FileInfo objects to the Items ObjectCollection. The problem is that I don't like what is displayed in the CheckedListBox (since the FileInfo was from a…
Issa Fram
  • 2,556
  • 7
  • 33
  • 63