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

BindingList with my class populating a ComboBox using a property of it?

I have a BindingList with my class where I would like to populate a ComboBox using a property of it so when my list changes the ComboBox would change as well. public class UserAccess { public override string ToString() { return…
Guapo
  • 3,446
  • 9
  • 36
  • 63
3
votes
2 answers

Adding tooltip to groupbox

After reading the descriptions of every property, I just can't find anything to define a tooltip in the groupbox class, or textbox or listview. Can I ask for a link to put me on the right track?
CodeMinion
  • 653
  • 2
  • 10
  • 24
3
votes
1 answer

How to determine if rank 1 array is a vector or multidimensional array?

Given an array type (type.IsArray == true), how do you determine if a rank 1 array (type.GetArrayRank() == 1) is a vector or multi-dimensaional array? var vectorArrayType = typeof(string).MakeArrayType(); var multiDimensionalArrayType =…
Suraj
  • 35,905
  • 47
  • 139
  • 250
3
votes
2 answers

In c# .Net 3.5, how can I control multiple WaitHandles?

I have the following scenario: My application must import several sets of data from another application, and time is critical. Because of that, it spawns one thread for each import. So, say I have imports 1 througth 10, where imports 4 and 5 can…
Huggy
  • 33
  • 7
3
votes
2 answers

C# WPF button click

I wounder if there is a way to check if a key is clicked? What I want to achieve is creating something like text editor, I have finished most of the parts. Now when I press on a button, I have a function under element PreviewKeyUp and the other…
sikas
  • 5,435
  • 28
  • 75
  • 120
3
votes
2 answers

sitecore multisite setup

I created site A successfully in sitecore and has deployed to production, now I want to add another site B to the same sitecore instance. I am aware of how to do this, but I am not sure how I can separate the two sites' code (layouts, controls etc.)…
xoail
  • 2,978
  • 5
  • 36
  • 70
3
votes
2 answers

OutOfMemoryException On Mobile Device

I'm developing an application that uses a mobile device to take a photo and send it using a webservice. But after I've taken 4 photos I am getting an OutOfMemoryException in the code below. I tried calling GC.Collect() but it didn't help either.…
xsl
  • 17,116
  • 18
  • 71
  • 112
3
votes
1 answer

Why do navigation properties in linq to entities within a subquery not implement IQueryable?

I've recently noticed something odd, navigation properties on an Entitiy do not implement IQueryable, while as far as i know retrieving a single entity and then chaining operators on navigation property may result in many (1 per item) calls to the…
Ronan Thibaudau
  • 301
  • 2
  • 6
3
votes
2 answers

StatusStrip equivalent

What is the DevExpress equivalent for StatusStrip? I need just a line which to shows me a sting - I don't need any ribboncontrols or something like this...
Dominating
  • 2,890
  • 7
  • 25
  • 39
3
votes
1 answer

Entity Framework mapping

Has anyone a good sample for a "real" mapping scenario with Entity Framework. Not one of that simple Table <-> Entity one ;-)
Andreas
  • 41
  • 3
3
votes
13 answers

Developers who have experience of .NET 3.0 or greater, what features would you recommend to look at first?

There are quite a few features a .NET developer needs to brush up on to get up to speed. I am still on 2.0, probably becuase of the industry I work in, where Banks tend to hold back on using bleeding edge technologies (in my…
Ferdeen
  • 21,332
  • 6
  • 29
  • 31
3
votes
1 answer

Combining multiple SubSonic.Where filters

Is it possible to combine multiple filters in Subsonic 2.1 to a shorter piece of code? SubSonic.Where filterTaal = new SubSonic.Where(); filterTaal.ColumnName = Pagina.Columns.Taal; filterTaal.Comparison =…
Caspar Kleijne
  • 21,552
  • 13
  • 72
  • 102
3
votes
1 answer

Is it possible to develop WP7 application for sharepoint 2010?

I am developing window phone application. I am consuming the sharepoint web services exposed by the sharepoint 2010. So firstly I am authenticating with the authentication.asmx. I am able to authenticate with the authentication.asmx. Then I am…
3
votes
2 answers

Registering an arbitrary data processing object with a byte stream

I have a need to provide the ability to plug an arbitrary C# class written by a third party into an existing program, so that it can process a stream of bytes. This object (or its type) would be registered with a sending and receiving object. It…
Robert Harvey
  • 178,213
  • 47
  • 333
  • 501
3
votes
2 answers

.NET Chart: How to add DataPoint with different member types than double?

The namespace I'm looking at is System.Windows.Forms.DataVisualization.Charting in .NET Framework 3.5. I've constructed a Chart with name chart1 and added a Series called mySeries to that chart. Within the Data section of that series in the…
John
  • 15,990
  • 10
  • 70
  • 110
1 2 3
99
100