Version 4.0 of the .NET Framework.

learn more… | top users | synonyms (3)

0
votes
1answer
19 views

Can I Send a custom class from asp .net 4.0 website to a WCF .net 4.0 service

I want to create a wrapper class called Report that contains dictionaries and lists and such in my website generated by 100-1000 fields from the website page, then send it to my WCF service. I have ...
0
votes
0answers
10 views

Slow startup of win-form application on Windows 8 x64

Ive exhausted my search for answers to this one so I thought Id best ask here. I have a win-form application built on Win7 x64 using VS2010 (vb.net). The application TargetCPU is set to AnyCPU and ...
2
votes
3answers
43 views

Generate GUID from a string that is not in guid format

I would like to generate a GUID from the input string. Let's say I have guid received from the user which is 81a130d2-502f-4cf1-a376-63edeb000e9f so I can do: Guid g = ...
0
votes
2answers
56 views

C# split into pre-allocated array changes array allocation

static void TEST(string arg) { string[] aArgs = new String[3]; aArgs = arg.Split(null,3); } I had hoped that if arg has only two items, that aArgs would still have 3 ...
1
vote
0answers
22 views

StreamWriter fails with large amount of data

I'm using StreamWriter to pass a large amount of data (30mb+) via a WebRequest POST. It fails with the error The stream does not support concurrent IO read or write operations. Contrary to the error ...
4
votes
1answer
45 views

Structuremap in Singleton returning multiple instances

I have registered 5 derived classes for the same interface using named instances. All these classes are registered as Singleton ...
0
votes
0answers
38 views

Conversion of Expression Func types

I have an Expression<Func<T_ENTITY_A, object>> sortExpression which I need to convert to a Expression<Func<T_ENTITY_B, object>> sortExpression Each property in ...
2
votes
1answer
23 views

LongRunning + AttachedToParent (simultaneously) task

My Task have to work for a long time (it's like a service) - so I need to make it LongRunning. At the same time, I need to mark it as AttachedToParent to prevent parent task completion before my ...
0
votes
0answers
14 views

Dont get an attachment with email asp.net mvc 4

On my mvc site I have feedback form which contains <input type="file" id="ProjectInformation">. I need to send my form to email and I wrote this code in my controller [HttpPost] public ...
0
votes
0answers
7 views

TCP/IP connection lost after Windows update in .net4 client - server app

I have a .net 4 client/srever app, in which I use standard .net classes for the communication. This app works 24/24 every day. It works great, but after every Windows update TCP connection between ...
0
votes
0answers
9 views

how to bind an image to RadImageEditorUI in WPF

I'm very new in WPF and in which i'm using RadImageEditorUI. Actually I want to bind an image url to the RadImageEditor. I not know how to bind the image URL to the Rad Image editor. I have the ...
0
votes
0answers
16 views

No http handler was found for request type 'GET'

I have read and attempted the repairs in at least 8 threads here to no avail. I am still getting this error "No http handler was found for request type 'GET'" on my default.aspx file when loading a ...
0
votes
2answers
21 views

what is HttpRequestMessage equivalent in .NET 4.0

in .net 4.5 I am using HttpRequestMessage public HttpResponseMessage Post(HttpRequestMessage request, TourCreateRequest tourCreateRequest) What can I use for .NET 4.0 that I can use similarly to ...
1
vote
1answer
27 views

How to set e-mail expiration time in C# MailMessage

I have a problem with setting the expiration time of an e-mail. I use System.Net.Mail.MailMessage and I didn't find any property that will handle this. I've seen in Outlook that it is possible. I've ...
3
votes
5answers
52 views

int.TryParse overwrites the value of the integer passed as an out parameter

I have this code... var i = int.MinValue; var s = string.Empty; int.TryParse(s, out i); After the TryParse Statement, the value in the i variable is overwritten (as zero) and my previous value is ...
0
votes
1answer
95 views

C# error : Value should be between minimum and maximum

I have a I have 2 panels with scrollbars. I am trying to use just one scroll bar to scroll both panels simultaneously. However I get this error : Value of '2268' is not valid for 'value'.'Value' ...
1
vote
0answers
9 views

Access to PartialCachingControl.CachedControl before Add it

I have some User Controls loaded dynamically, this is my implementation: public class Form : UserControl { public int ID { get; set; } // other props also } public class ...
2
votes
2answers
64 views

Atomic wait-then-take operation on number

I have the following class: public class AtomicLong { private long initial; private long value; public AtomicLong(long value = 0) { this.initial = value; this.value = ...
1
vote
1answer
23 views

FtpWebRequest/FtpWebResponse : connection is successful even if a bad password is provided after a successful connection

I'm testing a FTP connection with a user/password provided by the user. Everything work fine if I run my unit tests independently. But if I try an ordered test, running the FTP_Test_Sucessful before ...
1
vote
2answers
42 views

Get source property type from BindingExpression

I am trying to find out the source property type of a binding expression. I want to do this because I want to use the UpdateSourceExceptionFilter to provide a more useful error message than just the ...
1
vote
0answers
11 views

Common Language Runtime Detected an Invalid Program with ClickOnce

I have an InvalidProgram exception with the message Common Language Runtime Detected an Invalid Program This happen in an application that we didn't change in the last 3 month. The only change ...
0
votes
0answers
19 views

SQL CE database on shared drive : Will speed of running be an issue?

I have a c# winform application that uses an SQL Compact edition database. The Database file (.sdf) is intended to reside in a shared drive, so is the application itself. Right now on my development ...
0
votes
0answers
30 views

Troubles with WSE 3.0 when project upgraded to framework 4.0

At my company more o less 5 years ago I developed some applications over framework 3.5 to consume an exposed Oracle & Java web services (ASMX) from a company that follows certain SOAP standard ...
1
vote
1answer
23 views

WinForms: Area of a button where an image can be drawn on

Okay, I have a button, which displays itself in different sizes which is determained by some setting. I now want to display an image on the button. How do I get the rectangle which I can draw on? If ...
0
votes
1answer
67 views

Parsing JSON to not objects in .NET 4.0?

Is there a JSON parser for .NET 4.0? Ideally something like: String jsonText = GetTheJsonFromTheInternet(); var json = JsonValue.Parse(jsonText); and now i have a nested set of key-value pairs. ...
4
votes
1answer
38 views

Is there third party package tool with .NET4 support?

I got a C# program based on .NET4 environment. I want to make a installer which will ship .NET4 environment with it so that my user won't bother to install .NET4 indepently. Is there any third party ...
0
votes
2answers
45 views

Replacing Thread.Suspend and Thread.Resume in a windows service

We have a service that does the following basic workflow: 1) Starts, reads config settings and performs some calculations in a large loop. 2) Each iteration of the loop, it needs to be able to check ...
0
votes
0answers
17 views

Issues while working with Simplemembership

I am trying to implement Simple membership in my ASP.NET MVC 4 application targeting .NET Framework 4.0. I have referred many articles, but all showing it targeted for .NET Framework 4.5. Finally, I ...
0
votes
0answers
20 views

Does the end-user require .net 4.0.2 to run an application that uses LocalDB?

I have read that SQL 2012 LocalDB Requires .net framework 4.0.2. I am researching possible deployment options for my client-server application with a winforms frontend. What I can't figure out is, ...
0
votes
0answers
43 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 ...
3
votes
1answer
33 views
+50

At what point do the Input Parameters of a WCF Workflow Service get instantiated/set?

I have a very simple XOML file with a single Code Activity inside the ReceiveActivity Handler. The ReceiveActivity is mapped to an Interface called IRulesEngineService wih a single method on it. ...
0
votes
0answers
14 views

SQL Server CE : Move tables from on database to another

I have a .sdf database with a few tables. I need to move some of these tables to another .sdf file. I have been creating tables using only Visual Studio. How can I move the tables ?
0
votes
0answers
29 views

Add to Command Action From Parent Control

I have a custom control that is a textbox with an embedded button for clearing the textbox. The button is wired to the ApplicationCommands.Delete command with the target as the textbox. This works ...
0
votes
1answer
44 views

How to Remove ~ character from asp HyperLink

I have problem how to remove /~/ character from when I save file into database my problem is when they are no file into file upload controller I grape the NavigateUrl form asp hyper link and add to ...
-1
votes
0answers
24 views

Dotnetnuke Error: Could not load type 'x' from assembly 'DotNetNuke.Web'

We have written a number of Dotnetnuke modules that have been running perfectly in our DNN 6.1.5 installation. We recently installed a third party module for blogs (called Packflash) and ever since we ...
1
vote
3answers
69 views

Memory Fragmentation and Garbage Collection in network server apps

Actually i developed an tcp based network server that does a lot of read an write and uses less than zero cpu for its business logic, it acts as bridge between two endpoint. The network server is ...
-1
votes
1answer
19 views

mscorlib.dll is always automatically referenced by the build system

I tried to create a class library in .NetFrameWork 4.0. I used the below code in a class and trying to add mscorlib.dll from .NetFrameWork 4.0 since the System.Type is residing on mscorlib.dll. ...
1
vote
1answer
42 views

DoCallBack CrossAppDomainDelegate behavior for non-static delegates

Please consider the following piece of code: // Create a new application domain AppDomain ad = AppDomain.CreateDomain("New domain"); Worker work = new Worker(); // if Worker class is marked as ...
0
votes
0answers
9 views

MyODBC OdbcExeption error

I'm trying to create a WinApp in. NET 4 to retrieve records from a MySql DB version 3.23, not upgradeable unfortunately. I started with. NET Connector, but I just had to give up because these ...
2
votes
2answers
51 views

Optimizing Dictionary.TryGetValue()

I'm coding an computationally expensive application (NLP machine learning task) which is in a need of optimization. Since my code has a lot of for-loops, I've used the Parallel.For (and variants) to ...
0
votes
1answer
32 views

Perform a linq expression for 'contains' with searching through a list for 'like' not exact matches

Okay so I am stumped and have looked around for this and I know I am doing the implementation of something very simple more complex than it needs to be. Basically I have a POCO object that will have ...
0
votes
1answer
23 views

Best/fastest way to copy over large amounts of RTF data to a RichTextBox?

So I do a ton of RTF manipulations in a StringBuilder and that works great, its in a loop and takes like 0.02 seconds even for a ton of results. So now that I have the RTF data I want and I need to ...
2
votes
1answer
126 views

Get Application Pools from multiple servers IIS7

I am trying to get all application pools running on IIS7 servers. I want to display these in a grid and allow users to start, stop, or recycle them. This works great in IIS6 using DirectoryENtry but ...
0
votes
0answers
14 views

Oledb behaves differently for .Net 4.0 and .net Framework Client Profile 4.0

Case1 : When reading an excel using Oledb in .Net Framework Client Profile, the Oledb reads the data in excel ignoring the formatting that is given in excel Example: 1.98782637 is actual value but ...
1
vote
1answer
21 views

Single shared codebase shared among different .net versions

I looked around to see if there's an example of the question I'm about to ask before I dive into it. But let's say I have a codebase that is pointing to .NET 2.0 framework, I need to still keep it as ...
-1
votes
0answers
11 views

.net setup succesful but no files are copied

I wrote a small application and in order to deploy it I added a .net setup project. This project generates a setup.exe file and a .msi file. When I run the setup.exe file I enter the installation ...
0
votes
0answers
40 views

Could not load file or assembly 'CrystalDecisions.CrystalReports.Engine' / Windows 2012 server

we have an application written in .NET 4.0 which uses this SAP Crystal Reports. While the same build (x86) is working perfectly OK in Windows 2003/2008 (both x86/x64) with .NET 4.0 framework installed ...
1
vote
2answers
46 views

Delete parent with children in one to many relationship

I have a .NET4.0 application with Entity Framework 5.0 e Sql Server CE 4.0. I have two entities with a one to many (parent/child) relationship. I've configured it to cascade delete on parent removal, ...
0
votes
1answer
17 views

System.DirectoryServices use And limitation

In my application I need to fetch users email from Active Directory. I came across the System.DirectoryServices namespace for accessing Active Directory. I have no idea on how it works. I have few ...
0
votes
2answers
59 views

Using a timer in a long running windows service

I am trying to use a timer in a windows service. The service is able to start and stop and I write something to the event log when this happens, this works. My problem is that I also want to use a ...

1 2 3 4 5 136