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)

-8
votes
4answers
103 views

Sort Prime Numbers using for loop C# [closed]

I want to sort out prime numbers and all I am allowed to use is a for loop. static void Main(string[] args) { for(int a = 1; a <= 50; a++) { for(int p = 1; p <= a; p++) ...
1
vote
0answers
10 views

Determining Video Length from MemoryStream

Is it possible to determine the length of a video in a memory stream without saving the file to disk and using WMP or Shell? Not the size but the actual playing time of the video?
1
vote
0answers
23 views

protobuf-net Serializing System.Object With DynamicType Throws Exception

In my application, I'm serializing messages to send over the wire using protobuf-net. Each message has a list of key-value pairs for header information. However, I'm running into an exception and ...
0
votes
0answers
11 views

Is it possible to Mock an FTDI USB device?

I need to write an FTDI application in C# to interact with a specialised piece of hardware located at another site. When using the FTD2XX_NET.dllwrapper for the C# application, I receive: Failed ...
1
vote
1answer
29 views

Redefine static fields in derived / nested classes in C# [duplicate]

i have a class with a static field and a static function, e.g. like this public class A { protected static string[] _eventField = new[] { "SomeValue" }; public static TOut ...
-3
votes
0answers
30 views

Creating PHP/.NET bot for filling forms and buying with credit card [closed]

Is there a way to build PHP/C# bot to handle forms and make credit card deals. There's a web site offering buying kind of text,pdf metirial. You enter information about the order in a form,when ...
0
votes
1answer
313 views

Embedding picture to outlook email body

I have the following code: string imageSrc = "C:\\Documents and Settings\\menonsu\\Desktop\\screenScrapper\\Bitmap1.bmp"; oMsg.HTMLBody = "<HTML><BODY><img src = \" ...
1
vote
4answers
71 views

Delete data from sql database not working

when you select items from the listbox, you want to delete selecteditems. Why doesnt it work when selected data removed from database? I must have missed something. I got error message No mapping ...
0
votes
1answer
38 views

JSon deserialize DateTime

I have got a Date returned from an Api as a Json object which looks like this: Date(1371510000000) When I open internet Explorer and paste the following in the url: ...
0
votes
3answers
34 views

C# and MS Access 2010 case-sensitive SELECT

I've a little question about the select statement with Access database. I want to perform this in a C#/.NET project: var dataAdapter = new OdbcDataAdapter("SELECT * FROM COMPONENT WHERE TAGNAME = '" ...
12
votes
12answers
15k views

Blocking dialogs in .NET WebBrowser control

I have a .NET 2.0 WebBrowser control used to navigate some pages with no user interaction (don't ask...long story). Because of the user-less nature of this application, I have set the WebBrowser ...
0
votes
1answer
18 views

Getting Multiple drilldown highcharts on same page to work

I have 2 drill down charts on the same page inside 2 different div containers with different ids. The parent level renders correctly but when i try to drill down the 2nd chart, the drill down ...
2
votes
0answers
8 views

mshtml cls-compliant unknown warnings

I have a .net project written in C#. There is only 1 class in the project that uses the Microsoft.mshtml library, however there are 2 classes in the project that are generating mshtml warnings on ...
5
votes
1answer
22k views

ASP.NET AJAX Progress Bar: Update from Code Behind?

I have an Import function for an Excel spreadsheet within an application. It uses the FileUpload control at the moment. I upload the file, then run an operation on that file. I want to inform the user ...
6
votes
4answers
2k views

Resharper debugging a third party decompiled dll

Is there a way to debug into a decompiled dll using resharper and if so how do you do this? For example I am trying to debug into System.Web.Http.ApiController where I have decompiled and can see the ...
0
votes
1answer
35 views

inserting xml element into multiple nodes

I have the following XML <ROOT> <FSM338_Container> <FSM338_Details> <RunDate>2013-05-29 09:43:00</RunDate> <Uic>21690</Uic> ...
-3
votes
4answers
51 views

c# - Cannot implicitly convert type 'oAuthCredentials' to 'string' [closed]

I'm trying to get comments from linkedin by using API But I'm getting an error, in few places Can anyone help me to resolve an error? I've written this code protected void Page_Load(object ...
0
votes
1answer
25 views

Pinvoke error stack unbalanced - lzo decompression C function [duplicate]

I know this question has been asked several times, as follows: (Unbalanced Stack!) But I'm using an open source DLL, LZO 2.0.3, written in ANSI C. Information on the DLL is here: LZO download the ...
14
votes
13answers
2k views

What does the “private” modifier do?

Considering "private" is the default access modifier for class Members, why is the keyword even needed?
0
votes
0answers
20 views

Packing together javascript files a .NET Web Application

I am writing a simple web app using NancyFX and the Razor view engine. I have little components in my web app that are having css, html and JavaScript. Each small component has its own folder in my ...
1
vote
2answers
107 views

How to hide Web Reference from another project

I have two Visual Studio 2008 projects which are in the same solution. How can I add a Web Reference to project A so that project B doesn't see it? Project A needs web reference to WebService1 ...
0
votes
0answers
29 views

Open Thickbox on button Click

I am trying to open a thick box onClientclick event of asp:Button, the problem is the thick box is coming up for a sec, and then suddenly disappears (disappears as page load completed to be very ...
2
votes
2answers
47 views

How to set parameter in method like settings type

I want to create method with some kind of settings, ofcourse I could use int Para and then some ifs with if==1, if==2 etc. But i don't want this. My google skill didn't allow me to search for ...
1
vote
1answer
73 views

Reading html from online website C#

I am reading websites in C# and get contents as string....there are some sites which do not have well formed html structure. I tried HtmlAgilityPack and some others but they need well formed html ...
0
votes
1answer
133 views

How to send mail with class (localhost)?

E-mail + Attachment (vCard) send. I have no Idea what I am doing wrong, searched for similar Questions for 2 days but no question/solution on Stackoverflow or Google fits my description. Because ...
2
votes
2answers
78 views

return biggest value from query

i want to find which employee has the most orders: this code brings all the orders count from all the users: public void GetBestEmployeeFromDates(DateTime fromDate, DateTime toDate) { ...
0
votes
1answer
57 views

Change visibility of a picture when button is pressed

I have been working on a school project for months now and I'm almost done. However there's a slight bump at the moment. You see, I want a picture to show up for about a second, or so, when I've ...
5
votes
1answer
193 views

How can I return variable column lengths via LINQ to SQL

I've had a search round the internet and cannot find anything that directly matches what I'm after.... I have a stored procedure that returns a fixed set of columns (let's say ColumnA, ColumnB and ...
0
votes
3answers
87 views

Windows Forms application memory leak .NET

There is a winforms application, where couple of forms are very complicated - using datasets, multiple bindings with grids and comboboxes.. Every time when I open the form, the memory usage grows for ...
2
votes
1answer
912 views

How to insert text in to a word document from Rich Text Box

I have a rich text box in my c# application and it contains different lines of text(one to many lines). I want to get those lines and insert it to a Word document with the font and the font size I ...
3
votes
4answers
190 views

C# MVC Class Object reference not set to an instance of an object

Can anyone help me get around my problem with my class please? I have an Address class: public class Address { public string addressDescription { get; set; } public string addressNumber { ...
1
vote
1answer
105 views

Unable to view any received data

I'm implementing really simple UDP server in C# language. When I implemented the server on Console based application, it worked well. But when I implemented it by using the same code on Windows ...
0
votes
0answers
19 views

ClickOnce with DownloadGroup require administrative rights?

I am downloading files to my ClickOnce application using the DownloadGroups. But for some reason, the 3rd party dll:s in the project doesnt seem to be loaded unless I start the application as ...
4
votes
0answers
71 views

.net c# exception handling fails in 64 bit mode

I am facing a problem in my c# webservice application. Exceptions are not handled at a certain point anymore. The application simply stops without any further messages/faults exceptions. This is what ...
1
vote
6answers
45 views

Geting and seting fields using properties in C#

Hi I have recently started to learn C# and have some questions regarding properties. Let's say I have this statement: private int minAge { get; set; } Does this translate into this: private int ...
2
votes
4answers
771 views

Namespace 'SharePoint' does not exist in the namespace 'Microsoft'

So I am starting to learn C#, like literally just started learning, and coming from a Java background, it doesn't look too bad. However, I have a question. I am following THIS tutorial on using the ...
1
vote
2answers
103 views

Easiest way to access a class list

First of all, it's my first post here so sorry if it's wrong or anything just warn me it will be better next time. Second I speak french x). Ok it's not a problem but I would like to have a better ...
18
votes
7answers
6k views

Comparing strings with tolerance [closed]

I'm looking for a way to compare a string with an array of strings. Doing an exact search is quite easy of course, but I want my program to tolerate spelling mistakes, missing parts of the string and ...
0
votes
0answers
6 views

Convert SharpDX.Direct2D1.Image to WriteableBitmap

How can I convert SharpDX.Direct2D1.Image (effect output) to WriteableBitmap object? Thanks!
0
votes
0answers
155 views

UML diagrams and .NET

Are there any free addins or tools available for automatically generating UML notation and diagrams for my .NET project?
1
vote
1answer
66 views

How to deserialize JSON data which sometimes is an empty array and sometimes a string value

I get JSON data from server, but I found, when the string value was empty the server return a empty array. Not a blank string (""). So I confuse how to handle this case, I am using JSON.NET to ...
0
votes
2answers
31 views

Iterate through all columns of table in entity framework

I am working in ASP.Net MVC and using Entity Framework. I have following table schema MyTable(Y1947, Y1948, Y1949, Y1950,.........Y2012) Columns start from Y1947 to Y2012. I want to iterate ...
0
votes
0answers
16 views

InvalidProgramException with XmlSerializer

We've got a WinForms application mainly written in 4.0 that is having major problems serializing C# objects to Xml. The component that does the serialization is 3.5 but that shouldn't be an issue. ...
0
votes
0answers
21 views

.Net application slowness in IIS 7 - Need help analyzing trace

I am trying to debug a .Net website slowness issue. I have created a debug diag rule based off http response times and get the below stack traces The following threads in ...
0
votes
0answers
15 views

Sync framework unique constraint violation

Consider 2 tables, Employee and Location. Employee EmpId Name LocationId xxx XYZ yyy xxx ABC zzz Location LocationId Location yyy India xxx USA EmpId and LocationId are ...
0
votes
0answers
15 views

IIS Crash on stack overflow (unhandled) - Microsoft .NET 4.5 ASP.NET MVC 3

I have wrong behavior of ASP.NET MVC 3 application on IIS 7. We had stack overflow condition in code and it caused general application pool crash without correct System.StackOveflowException throwing. ...
0
votes
1answer
24 views

Why I can't see CrmDiscoveryService type in Intellisense after adding web reference?

I have added this CrmDiscoveryService Web service reference: http://<servername:port>/mscrmservices/2007/ad/crmdiscoveryservice.asmx?WSDL But still cannot see CrmDiscoveryService type in ...
2
votes
2answers
69 views

c# reproduce datetime from ticks

I have a datetime field like {01/01/0001 00:01:02} Millisecond = 30 and the Ticks for the above datetime field is 6203000000 The ticks save in the database as an int value which is 62030. I ...
0
votes
0answers
36 views

.NET Web API: Class level validation attribute causes Web API to throw ArgumentNullException if instance is null

I have a DTO class that looks, for example, like this: public class ExampleDto { [DataMember(Name = "Date", IsRequired = true, Order = 1), Required] public DateTime Date { get; set; } ...
5
votes
1answer
9k views

WMI: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA) throws when try to connect to remote machine

I'm using the following code to connect to remote machine using WMI: ConnectionOptions connOptions = new ConnectionOptions(); connOptions.Impersonation = ...

1 2 3 4 5 3149