The 3.5 version of the .NET Framework, which is based on the 2.0 .NET Framework with extra assemblies (including 3.0).
0
votes
2answers
29 views
Multibinding: two colums to one column
I have a table which has two columns ValueA and ValueB. I need to show the table in a grid, but I need to show either ValueA or ValueB, but not both. So if ValueA doesn't have a value, then ValueB is ...
0
votes
1answer
28 views
Unable to convert MySQL date/time value to System.DateTime with LINQ Where?
I have the statement:
var persons = _context.Persons.AsExpandable()
.Where(predicate).ToList();
When I run the above, it gives me the error Unable to convert ...
1
vote
1answer
27 views
How to prevent XDocument from adding XML version and encoding information
Despite using the SaveOptions.DisableFormatting option in the following code:
XDocument xmlDoc = XDocument.Load(FileManager.SourceFile);
string element="campaign";
string attribute="id";
var items ...
0
votes
0answers
15 views
Get strong types from a DataTable in .NET 3.5
I have no choice but to work with the following:
I'm given a non-strongly-typed DataTable whose columns are known
I have accompanying POCO model classes which can be annotated by attributes if ...
0
votes
1answer
32 views
POST NameValueCollection to Web API using WebClient.UploadValues for .NET 3.5
I have created a Web API that serves up PDF documents. I have a 4.5/4.0 client, a Javascript-only client, and I'm now attempting to create a .NET 3.5 client for a few older websites that we have. I ...
0
votes
0answers
2 views
Installer created by InstallShield 2008 prompted twice on Windows 8 for .NET 3.5
I have an installer created by InstallShield 2008 (it's old, yes. But my boss refused to upgrade it), which works well on most of Windows. However, on Windows 8, on starting I saw prompting for ...
0
votes
4answers
41 views
Determine if a DataGridView's horizontal scroll bar exists?
Visual Basic 2010, .NET 3.5
Is there a way to pragmatically determine if a DataGridView's horizontal scroll bar is active or visible? I need to move a few items about when the DGV's horizontal scroll ...
0
votes
1answer
18 views
Web app, load image into memory to get width
I have a web application that displays large thumbnails. The layout is built on the server. What's the best way, server side, to load the images into memory as I want to adjust the row layout ...
-5
votes
2answers
73 views
Check if Dictonary<string,object> exists in List<Dictionary<string,object>>? [closed]
I have a List that is defined as:
List<Dictionary<string,object>>()
This List gets populated in a foreach loop and basically contains property names and values from ProperyInfo.
In ...
0
votes
1answer
27 views
Why ToolStripItem can't handle big numbers?
I have a recursive funcion that search for folders.
private int contFiles = 0;
private List<string> GetFiles(string folder, string filter)
{
var files = new ...
0
votes
0answers
21 views
Update and add records not working correctly
I'm working on a 2 table relationship in VB.net 2010. I'm having problems with adding a new record and for some reason it will not update correctly. It doesn't error out. Seems like it just hangs ...
1
vote
2answers
33 views
Can I use ServiceStack web service with .net 3.5
Can I use ServiceStack web service with .net framework 3.5 web forms?
Can I have a small example because I've tried to go through ...
2
votes
1answer
29 views
How can I add Excel 2010 (14) PIA to a .NE 3.5 project?
I'm using VS 2012.
The MS Office installed is 2013 x64.
I've downloaded and installed the Office 2010 PIA.
At the VS:
I can only add references to
Microsoft.Office.Core
...
0
votes
2answers
24 views
How to get XML namespace?
I tried using this code: [C#]
var textReader = new XmlTextReader(path);
if (textReader.NamespaceURI == "http://www.portalfiscal.inf.br/nfe")
{
//...
}
My XML:
<?xml version="1.0" ...
0
votes
1answer
62 views
Trying to spawn a new thread in ASP.NET; no errors, no thread
I am trying to spawn a new thread from an ASP page written in VB.NET, on .NET 3.5.
The page allows a user to upload files and then processes the files into the database.
As the processing can take a ...
3
votes
3answers
74 views
How to get only the files that are possible to copy?
I have this line of code: (using LINQ)
//string folder <-- folder browser dialog.
listFiles = Directory.GetFiles(folder, "*.xml",
SearchOption.AllDirectories).Select(
...
0
votes
0answers
39 views
Loading Skype4COM.dll from .net 4.0 as .net 3.5 or below
I’ve been trying to use the Skype4COM.dll in my C# Windows Form project to allow it to send and receive SMS using Skype. Up to this point I notice that Skype4COM.dll will work really well whenever I ...
0
votes
0answers
10 views
Thread waiting for change on external hardware trigger
I am writing an image processing application that needs to wait for an external trigger from light barrier (light sensor with two states).
This is how the code looks right now:
while (true)
{
...
0
votes
0answers
22 views
Entity not modifying in EF 3.5
I am unable to modify an Entity in Entity Framework 3.5, but it worked in Entity Framework 4.0. The 3.5 application has been running for a long time.
aspx.cs file:
RootCauseEntities RCModel = ...
1
vote
1answer
63 views
.NET 3.5 - is there any other way to Zip files [closed]
I am aware of System.IO.Packaging and System.IO.Compression for compressing the files in .NET 3.5. To Zip files System.IO.Packaging is quiet handy.
I am aware of the free libraries that can be used to ...
0
votes
0answers
21 views
MS Charts version 3.5 in VS2012 giving an error in the designer
We have just upgraded to VS2012 from VS2010. However, any form with a chart control on it will not load in the designer (although it compiles and runs OK). We are using the .Net 3.5 version of ...
-1
votes
0answers
70 views
Returning JSON Data to the jQuery dataTables plugin from an asp.net MVC controller action?
I have two asp.net MVC controllers that each contain an action. They pretty much have identical data from a single table. With one controller, in order to populate the jquery datatables plugin, I ...
0
votes
1answer
52 views
Get current page number of DataPager
I'm trying to get the page number for the current page of my ListView. I'm using a DataPager component with the following code:
int CurrentPage = ((DataPager1.StartRowIndex) / DataPager1.MaximumRows) ...
8
votes
1answer
84 views
Why can I not use IComparable<T> on ancestor class and compare child classes?
I'm trying to sort a list of objects using List.Sort(), but at runtime it tells me that it cannot compare elements in the array.
Failed to compare two elements in the array
Class structure:
...
1
vote
1answer
45 views
Map List<> with Automapper?
I have two classes:
public class CustomerDTO
{
public string Name {get;set;}
public List<Order> Orders {get;set;}
}
public class OrderDTO
{
public string Name {get;set;}
public string ...
0
votes
2answers
64 views
IDataErrorInfo best practices
I am working in a WPF project using MVVM.
What's the best practice to validate errors using IDataErrorInfo? In my Model or ViewModel?
Whats the best pattern to use to implement validation?
P.S. I ...
1
vote
2answers
49 views
Localizing Windows Forms with .NET 3.5
I have a problem to make a localizable WinForms application with target .NET 3.5 framework.
I am following the guide from MSDN:
http://msdn.microsoft.com/en-us/library/y99d1cd3%28v=vs.90%29.aspx
...
0
votes
0answers
28 views
How to tell entity framework not to update a field?
I am using a MySQL .NET Connector and when I insert a record into a database, it takes the .NET DateTime and complains that it can't convert from .NET DateTime to MySQL DateTime. Is there a way I can ...
0
votes
0answers
48 views
WPF TreeView drag and drop show info from dragged element
I want to show info from the selected element while I'm dragging in a TreeList in WPF.
I implement this right now by setting a non default cursor and drawing a box with the text inside it.
Problem is ...
0
votes
1answer
33 views
LINQ correlated subqueries
Starting with the next entities definition:
Public Class Certificate{
public ID as int;
}
Public Class Authority{
ID int;
Certificates IEnumerable<Certificate>;
}
My function recives ...
0
votes
2answers
45 views
Best file mutex in .NET 3.5
I want to use some mutex on files, so any process won't touch certain files before other stop using them. How can I do it in .NET 3.5? Here are some details:
I have some service, which checks every ...
0
votes
0answers
11 views
Visual studio integrated test runner for NUnit .Net 3.5
Does anybody know a good VS integrated tool to run Nunit tests for .Net 3.5?
I can't have software as ReSharper or CodeRush since that's not license free.
0
votes
2answers
34 views
Can you set autorization attributes at a table level in MVC?
I know you can set the authorize attribute at and the controller level and at the action leve, but lets say I have a table in a view and I want some users to be able to only see certain columns and ...
0
votes
0answers
49 views
Not directly going against the entity framework?
I added my table called Persons to my entity Model. I don't want to have to directly access the entity Person created in the entity model. How can I access the the entity models through a middle ...
0
votes
0answers
27 views
Access CurrentUser Registry Key for Impersonated User - Compatibility with .NET 3.5
I've recently written an application that impersonate user account, get a handle to CURRENT_USER registry key (using PInvoke "LoadUserProfile" to retrieve ProfileInfo.hProfile object) and create ...
0
votes
0answers
11 views
Entity Framework and LINQ: Is there anyway to auto reflect the renamed entity in LINQ query
I was trying to change the table names in the entity model or database but the old names are already use in many places in the application. Is there any way to auto reflect renamed entities or tables ...
0
votes
3answers
29 views
Using a delegate for value transformation
I want to develop a basic class that holds a string value and I want to pass a transformation rule how this value should be stored as an int value.
When I'm not completely wrong this should be ...
1
vote
2answers
49 views
SystemSounds.Beep.Play not making any sound
I am having trouble with System.SystemSounds.Beep.Play() not making any sound for a particular user. It seems to be working for everyone else (a fairly large user base with generally 24/7 use) but ...
0
votes
2answers
63 views
Input string was not in a correct format
I have this piece of code:
private string getTime(int time)
{
TimeSpan t = TimeSpan.FromSeconds(time);
return string.Format("{0:D2}:{1:D2}", t.Hours, t.Minutes, t.Seconds, t.Milliseconds);
}
...
2
votes
3answers
96 views
Microsoft JScript runtime error: AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts
I am getting this error when I attempt to run my aspx application even though I am in 3.5 framework.
Microsoft JScript runtime error: AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts. Ensure ...
0
votes
1answer
64 views
How get all public static members without getters and setters via reflection?
My code is
var memberList = from member in type.GetMembers(BindingFlags.Static | BindingFlags.Public)
.Where(m => !(m.Name.Contains("get_") || m.Name.Contains("set_") ||
...
0
votes
1answer
129 views
WPF change text property on TextBlock in ControlTemplate
I have TabControl and I have a plan to generate dynamicaly TabItems and fill up with ControlTemplate.
ControlTemplate:
<Window.Resources>
<ControlTemplate x:Key="Qtemp" ...
0
votes
3answers
48 views
Remove item from dictionary where value is empty list
What is the best way to remove item from dictionary where the value is an empty list?
IDictionary<int,Ilist<T>>
0
votes
1answer
61 views
Find missing information between 2 lists
How can i find missing information between 2 different lists in
The code that generates the lists
private static IEnumerable<User> GetSomeUsers()
{
var mikesGroups = new ...
0
votes
1answer
63 views
Find delta of 2 IEnumerable<T>
I' getting users and groups from active directory, however after some test we found out that memberOF is not aligned with member example userA is member of groupW but groupW is not listing userA as ...
0
votes
1answer
33 views
Convert IEnumerable <T> to LookUp<T,K>
I have a function that returns IEnumerable of the following class
public class User
{
public string UserName { get; set; }
public IList<string> MemberOf { get; set; }
}
How can i convert ...
0
votes
6answers
107 views
Fast/efficient way to get index of minimum value in List<T>?
Is there any way to find minimum value index more efficient/faster than this?
int minimumValueIndex = List.IndexOf(List.Min());
-4
votes
0answers
56 views
WPF/MVVM Questionare
I need to create questionare. All screens will be TabItems. Most of TabItems will be different. But questions TabItems looks the same.
I would like to create TabItem template containing image which I ...
2
votes
2answers
37 views
Syntax for generic (i.e. <T>) web user control
Assuming I have made a web control as follows:
public class TestControl<T> : WebControl
{
...
}
Is there any way to place that control on an .aspx page without having to do it via code? ...
0
votes
1answer
50 views
How is Jenkins helpful to automate deployment process
Can anyone provide insights of using Jenkins for automating deployment under controlled and uncontrolled enviroments. We have different environments - dev/qa/uat/prod and currently we are using batch ...






