The .NET framework is a software framework designed mainly for the Microsoft Windows operating system. It includes an implementation of the Base Class Library, Common Language Runtime (commonly referred to as CLI) and Dynamic Language Runtime. It supports many programming languages, including C#, ...

learn more… | top users | synonyms (3)

2
votes
1answer
46 views

Get the ID of all child nodes from multiple treeview (skip parent node id). How?

I have used a treeview in a user control which is used multiple times in a single page showing different data. There would be only three levels of nodes (Parent - Child - Sub Child) By default the ...
0
votes
1answer
15 views

Multicolumn Dropdown in Ultragrid

I have to do some maintenance on an VB.NET application (Visual Studio 2012) that uses Infragistics. I need to modify column in an existing UltraGrid control. One of the column is already a dropdown ...
-1
votes
5answers
91 views

Is there an object that contains the parameters of a function?

In a method that is so long that it scrolls off the screen. Just to make life easier as I program, if I want to refer to the variables of a class I can use the Me or this objects depending on which ...
0
votes
0answers
24 views

How can I find out when a picture was actually taken in C# running on windows server 2012?

I'm using the below code :- public static DateTime GetDateTakenFromImage(string path) { using (FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read)) using ...
0
votes
0answers
8 views

.NET Client-Server shared objects

I have a client-server setup where both make use of the same objects, but only the server is allowed to instantiate these object. The client can only make use of what it requests from the server. When ...
1
vote
1answer
37 views

how to syncronize two functions using lock

I have two functions A and B i want to prevent them two run simultaniusly. should I use lock or mutex or interlocked? this is what I tried class C { object obj = new Object(); void A() ...
0
votes
0answers
22 views

Visual Studio - intellisense for javascript custom object

I created the following javascript object: var Content = Content || {}; // Constructor defines properties and inits object Content.ProductManager = function () { // ... }; ...
0
votes
0answers
11 views

How to run different versions of a database-driven WPF client concurrently in .NET?

We have a data-intensive .NET WPF application which in its current form directly accesses a shared MS SQL database. The client continuously collects large amounts of data during production and ...
0
votes
1answer
23 views

.Net MVC4 - How to return exception in json format?

I have a MVC4 application where I call a controller action from javascript using jquery. When an exception occurs in the controller the returned response text is in HTML format. I want it to be in ...
1
vote
1answer
22 views

Listview ItemCommand not firing because of jquery

I have a listview of categories with checkboxes (categories filter). But I have made a custom checkBoxes (linkButton with css is my checkBox). <asp:LinkButton CssClass="checkBox" ...
0
votes
1answer
24 views

Should I be using an IAuthorizationFilter if I wish to create an ApiKey restricted resource with ASP.NET MVC4?

I have a few simple routes which I wish to restrict via a simple querystring param. If the key is incorrect or not provided, then I wish to throw a NotAuthorizedException. Please don't suggest I use ...
2
votes
2answers
32 views

Bind the textbox value with values in other controls

I have a textbox whose text value I want to bind based on the values selected in two other controls. For example, I have a ListBox and I choose a value say "Blue" and one other TextBox whose text ...
0
votes
2answers
89 views

How can I limit class usage?

I have a list of List<object>. How can I limit that only Class1 and Class2 should be used there is list? Class1 and Class2 are basically different. I would guess what there is basic class for ...
0
votes
1answer
13 views

Round trip XML serializing with .Net DataContractSerializer fails

I seem to be getting some junk at the head of my serialized XML string. I have a simple extension method public static string ToXML(this object This) { DataContractSerializer ser = ...
0
votes
0answers
22 views

How to create a jpeg file from image extracted from the pdf file using itextsharp?

I am using iTextSharp for manipulating pdf file in my asp.net web application. I have converted pdf pages into iTextSharp.text.Image.Now I want to save this image files into hard disk named like ...
2
votes
1answer
24 views

OpenXml Multiple Images

I currently am inserting images with Picture Content Controls, but there appears to be an obvious limitation (by nature of the control) to only 1 IMAGE. How can I add multiple images at a set ...
1
vote
1answer
16 views

Creating T-Sql Jobs under shared hosting?

I have re seller shared hosting plan where Sql2008 Express R2 is installed. I want to create a job that will execute every midnight that is 00:00:00 hrs and move data from one table to another. I ...
3
votes
3answers
52 views

How to force XDocument to output the prolog in uppercase while preserving identation and formatting?

I want XDocument to output the XML prolog (for example "<?xml version="1.0" encoding="UTF-8"?>") in uppercase. Here is how I'm currently doing it, but that doesn't seem to work: XDocument doc ...
1
vote
0answers
23 views

Bad Data Error while decrypting session key

With Reference to the MSDN link Session Key Decrption I am trying to decrypt the session key, but I am getting bad data exception at aes.Key = ...
0
votes
2answers
19 views

Register abstract class and resolve derived class with Unity

I have the following code public abstract class A { public abstract string MethodA(); } public class B : A { public override string MethodA() { return "Class B method"; } } ...
0
votes
1answer
18 views

.NET Counterpart For The Scripting.DLL

We were using Interop.Scripting.Dll reference in our VB.net project. We do not want to use this Interop.Scripting.Dll in our VB.Net project now.Can we get the .Net Counterpart of Scripting.Dll so ...
0
votes
0answers
26 views

Display Entries done in database asynchronously in web application

I have a made a customized log functionality for my web application(ASP.NET , C#.NET) which adds entries based on user actions to the database. I want to display the Entries - with the most current ...
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 ...
1
vote
1answer
53 views

How to select all childnodes when a parent node is selected in treeview ? (When the treeview is used from usercontrol)

I have a usercontrol which has only the Treeview control. <asp:TreeView ID="Tree_Index" Style="font-size: 11px; font-family: Tahoma; font-weight: bold; text-align: left;" runat="server" ...
2
votes
0answers
39 views

How to Hide selected item from a databounded combobox (Datagridviewcombobox)

I have a bounded combobox inside datagridview ( DataGridViewComboBoxColumn ) and I want to hide selected item of that combobox in the next row of the grid for example : combo box values are, ...
-3
votes
1answer
25 views

Will Stored Procedure useful to increase performance in our application? [closed]

Many times we are using stored procedures in our web application. when me and my friend discussing about it, i got this question that will SP is useful to increase your performance? If yes then how? ...
0
votes
1answer
14 views

How to store complex configuration information for a .Net/ASP.Net application on .Net 4.5

I am looking for a simple and elegant means to store settings for my application. Here is an example that closely depicts that I am looking for public class Office { string location; int ...
0
votes
1answer
20 views

References, loading different copy of assembly at runtime

How can I reference a managed assembly in my project directory to be able to build my application, but then have the CLR load a different copy of that assembly (at a specified path) at run time?
2
votes
1answer
45 views

Why ThreadPool thread doesn't print anything to console unless main thread print first

I am very confused about below code snippet. //Console.WriteLine("Main thread: Doing other work here..."); ThreadPool.QueueUserWorkItem( state => { ...
1
vote
0answers
28 views

EPPlus: Opening Password Protected Excel Workbook

When we try to open a file protected in Excel 2007, it works but when we try to open same file protected in Excel 2010, it does not work. It throws following error -- Source array was not long ...
1
vote
1answer
26 views

StartCopyFromBlob in Azure SDK 2.0 taking days?

I have a situation where I am copying lots of blobs from one storage container to another and some of the blobs have copied but a lot of them are still pending after two days since I initiated the ...
1
vote
3answers
68 views

How can I use a reserved keyword as an identifier in my JSON model class?

I have never used Web API before, but I need a web service that will accept/return JSON objects and using this seemed like a reasonable thing. It looked pretty simple (if not a bit of overkill for my ...
1
vote
10answers
119 views

What is the purpose of “finally” in try/catch/finally

The syntax will change from language to language, but this is a general question. What is the difference between this.... try { Console.WriteLine("Executing the try statement."); throw new ...
3
votes
7answers
139 views

How can I make this code faster?? List<custom_class>().Find(lambda_expression)

I need to match email sends with email bounces so I can find if they were delivered or not. The catch is, I have to limit the bounce to within 4 days of the send to eliminate matching the wrong send ...
-2
votes
1answer
12 views

Create custom rule for code analysis using sonar for C# project [closed]

I have jdk version 1.5.0 and fxcop 1.36 version... My system is 32 bit and windows 7 operating system.. I want to install and cofigure the sonar into my system.. What are the steps to be followed to ...
0
votes
3answers
30 views

Fastest way to append text to a richtextbox?

I have a application with a RichTextBox control where a procedure is adding text almost all the time: RichTextBox1.Text += vbNewLine & "Title: " & AlbumName RichTextBox1.Text += vbNewLine ...
0
votes
1answer
14 views

ListBox selected index is lost after PostBack in ASP.NET

I've got an issue with a ListBox in ASP.NET application: after manual selection, an event "SelectedIndexChanged" fires, but its handler cannot keep neither the selected index nor the selected item. ...
-7
votes
0answers
34 views

Integration of RapidMiner in C# application [closed]

I want to create C# program that uses rapidminer , and some Java API classes, via IKVM. Like IKVM with Weka and this tutorial : http://weka.wikispaces.com/IKVM+with+Weka+tutorial I need simple c# app ...
0
votes
2answers
34 views

Running AppFabric on a server with 128gb RAM - Latency and Garbage Collection

I'm looking at the viability of using AppFabric as a data cache for our our data. Our data is: accessed 4 million times a day updated 50k times a day. searched 500k times a day. It houses around ...
2
votes
2answers
64 views

Unable to create a compound Expression<Func<string, bool>> from a set of expressions

(Answer towards the bottom) I'm trying to build a system that combines Func<T, bool> delegates into an ExpressionTree that allows me to pass in a value (badValue in this case) and get a ...
1
vote
2answers
34 views

windows authentication for multiple user in same domain

I want all the users from same domain name: XYZ to access my application below is my code. <system.web> <compilation debug="true" targetFramework="4.0" /> <authentication ...
1
vote
4answers
105 views

Crafting a LINQ based solution to determine if a set of predicates are satisfied for a pair of collections constrained by a set of invariants

This isn't a question I feel I have the vocabulary to properly express, but I have two collections of the same anonymous type (lets call it 'a.) 'a is defined as new {string Name, int Count} One of ...
-3
votes
1answer
39 views

How to stop an SQL query when browser is closed [closed]

I really can't find decent documentation for a problem that (I think) is quite general. If I have a website written in .Net or Java which allows for users to execute very high demanding SQL queries ...
0
votes
1answer
13 views

Setting an Exchange contact email address to null/String.Empty

Using Exchange Web Services 2.0 (EWS) how do I set a Contact's email address to null or String.Empty without getting the error "An object within a change description must contain one and only one ...
0
votes
3answers
30 views

How do I debug a running process?

I have a process that I am running and it should have finished a long time ago. It's been running 13 hours, and I expected it to be done in just a few. It has run successfully before many times. It's ...
0
votes
0answers
15 views

FluorineFx solution to read response

Here is class to read response from netConnection.Call: public class getCompleteParkOfUser : IPendingServiceCallback { public void ResultReceived(IPendingServiceCall call) { ...
0
votes
0answers
16 views

How to Create a Data Processing Web Service?

I am very new to web development. I have been working on a Javascript Web Mapping Application for the last several months and now I am getting to the point where I may need to do some server-side ...
1
vote
0answers
29 views

MVC3/Azure - What's the most scalable way to handle 50k+/second quick API calls?

I have a farm of Web Roles running on Azure based on MVC3 that potentially need to handle ~50k API calls per second. The calls will be quick, all they do is adding some data to Azure Storage Queues (I ...
1
vote
2answers
35 views

WCF service runs in Debug mode but not in Release

I've come up against a weird problem: The WCF web service I'm building runs in debug mode but not in release. I've got a simple Hello web method in the web service that just returns a string and does ...
0
votes
2answers
63 views

DataBase Insert In Code Behind

Trying to insert into db both text and images. The only required fields are Category, Name, and Description. If just those fields have entries, the insert into the db is not successful. If the ...

1 2 3 4 5 3098