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)

0
votes
0answers
5 views

VdProj File update using Bash Scrpit

I want to automate my setup and deployment project using Bash Script and it should be able to increment project version 1.0.0 to 1.0.1 and build the project using devenv.exe Please help.
1
vote
9answers
5k views

Adding spaces between strings

What's the best way of adding spaces between strings myString = string.Concat("a"," ","b") or myString = string.Concat("a",Chr(9),"b") I am using stringbuilder to build an XML file and looking ...
0
votes
0answers
43 views

Optimize fill factor by move objects between areas

I have a optimization problem which is about several small rectangles inside one outer rectangle. We have, let say, three outer rectangles which are in following order (similiar to weeks). The inner ...
0
votes
0answers
6 views

.NET serial class for USB read

I'm looking for a way to read a raw bytes from an off the shelf device. I have used the SerialPort class in .NET to read raw bytes and wanted to know before purchasing my hardware if anyone has had ...
-1
votes
2answers
21 views

SQL Error mesage relating to length of identifier

I get the following error, but not quite sure what it means: Error message: System.Data.SqlClient.SqlException: The identifier that starts with '[DEFAULT], 1 AS rowJoiner FROM ...
0
votes
5answers
188 views

Using Inheritance in C# to share functions

So i'm new to the idea of inheritance and interfaces and i'm not sure how to achieve what i'm trying to do. I have the character class which defines a position, a rotational direction, a texture for ...
0
votes
1answer
12 views

Connect to mdb without knowing the cols?

I have a mdb file with a lot of data. I don't know the names of the tables or the cols inside. I need to build a c# app that will show some details on this db. What is the options to view the ...
142
votes
5answers
35k views

Difference between Math.Floor() and Math.Truncate() in .NET

What is the difference between Math.Floor() and Math.Truncate() in .NET?
2
votes
4answers
4k views

Error CS1705: “which has a higher version than referenced assembly”

I've been looking into this for a bit now and haven't gotten it resolved. I get the following error message: Compiler Error Message: CS1705: Assembly 'My.Model, Version=1.1.4422.23773, ...
0
votes
1answer
10 views

ASPX embedded resource not showing

I am using a ASPX page as a embedded resource for displaying that in a iframe on a separate page. Works absolutely fine on all the development machines. Even if i host that in IIS in my machine, it ...
3
votes
2answers
4k views

“No imaging component suitable to complete this operation was found.” in C#

I have programmed an application that it needs to download *.png files and set it into the background of the button in WPF. So, when i run this program, it faces the Error as "No imaging component ...
0
votes
0answers
41 views

Read a file and write to it while open

Do any of you know if it is possible to have a file open (say a .txt file) and still have your software write to it?, if so, what properties do you need to set?
0
votes
0answers
13 views

VC++6 and .NET: COM/ACTIVE+ with 32-bit and 64-bit processes

I am looking if it is possible to activate a COM/ActiveX done in .net (c#) as out-of-process by vc++6 code . Actually I am loading it as in-process and it is working fine. That is code I got from a ...
1
vote
2answers
34 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
2answers
35 views

Multiple tables containing one entity in Entity Framework

I am working on a system that sells products. This system has products, with subclasses for every producttype. public abstract class Product { public int ProductId { get; set; } public ...
1
vote
1answer
72 views

Mono for Android Charts, Graphs, Diagrams

Is there any option to draw simple Charts/Graphs/Diagrams from Mono for Android code - C#? I mean drawing smth like this: http://www.achartengine.org/dimages/multiple_axis_cubic_line.png In Java ...
3
votes
1answer
113 views
+100

ChannelFactory bug with dynamic arguments

This question is related to Bug in the dynamic language runtime in combination with IIS 7.5 ChannelFactory hangs if I provide it with a correctly typed dynamic object. dynamic src = "MSFT"; var ...
2
votes
1answer
85 views

.net ReportViewer javascript error

I am using the ReportViewer (2012, version 11) user control in a webform that is loaded into iframe on a MVC single page app. I find that I run one report and it works fine, but then I go to another ...
0
votes
2answers
625 views

Design Principle High Fan in vs High Fan out

Could anyone please explain me with an example? I am getting contradicted myself High Fan in: A given class designed in such a way that it a high number of other classes can easily consume it. High ...
0
votes
2answers
18 views

TCP sockets sr.readline prevents entering data on console?

Below you will find my code. THe thing is, this is supposed to be a "client chat" program so you would be able to send message constantly. However, somehow the app is blocked by console.readline() so ...
0
votes
3answers
32 views

How to pack a SFX file created with DotNetZip library without destroy the file?

I've created a self executable with DotNetZip library and now I will pack the exe. I've tried it with UPX, BoxedAPP, .NET Shrink and IlMerge, all of them destroys the SFX file. Important: The ...
0
votes
2answers
19 views

method to search through all controls and only picking out a certain type

I am looking for a methods that can loop through all the controls on my page and only pick out certain types. In this case, I am only looking for the html element textarea. I have this loop... For ...
1
vote
1answer
155 views

Is it possible to internalize Castle Project's DynamicProxy classes using ILMerge?

I have a .NET library that internally has a dependency on Castle.Core.dll, since I use Castle's DynamicProxy (specifically, an "interface proxy without target") to perform interception of method calls ...
-4
votes
1answer
45 views

Make the user able to select an item in the panel and delete it with a button_Click [closed]

I have a panel. The panel show objects from a list for the user. I want the user to be able to select one of the objects and delete the selected one with a button_Click. I guess that i need to loop ...
1
vote
0answers
17 views

Best way to write C ++/CLI nested object accessors

Here is the situation: I have an Unmanaged library Written in C/C++ and I would like to access those functions and structures in the CLR, but I am having trouble with writing basic accessors for the ...
0
votes
2answers
24 views

Converting AJAX REST call to a C# .NET

I have a AJAX call that works perfectly. I'm trying to make the same call via C# but I'am very confused. This is my webmethod: [WebMethod(true)] public static object ParentLogin(string email, string ...
2
votes
3answers
80 views

Why don't integers get lifted to doubles when treated as objects and comparing?

I ran across this interesting situation today: var a = new HashSet<Object> { 1.0, 2.0, 3.0 }; a.Contains(1); //False a.Contains(1.0); //True Of course, this was just a generic version ...
0
votes
2answers
27 views

How to dock a view inside of a XtraGrid.GridControl?

I have a DevExpress XtraGrid.GridControl in a Winforms project that I'm using with a Master/Detail setup with multiple tables in a dataset that is bound at runtime. The visual behavior of the grid is ...
0
votes
0answers
9 views

Code needed to page through Google custom search API search results in a .NET WPF application

I have this code: string apiKey = "Key"; string cx = "CX Code"; string query = key; var svc = new Google.Apis.Customsearch.v1.CustomsearchService _(new ...
0
votes
0answers
41 views

Storing in a dictionary, and then raising them

I managed to get a dictionary that can store events: 'Terrible .NET events... where's sender and e?! Public Event ItHappened() Public Event ItAlmostHappened() Private mapping As New Dictionary(Of ...
0
votes
2answers
34 views

How to mix server side code in razor

A trivial question but the solution escapes me at the moment We have a CMS where the Layout and CSS ( names only, no extension ) are retrieved from db ! the .cshtml has this code which does NOT ...
0
votes
1answer
3k views

Convert IEnumerable to EntityCollection Entity Framework 4

I have generated the following code with Entity Framework 4 for a navigation property: <XmlIgnoreAttribute()> <SoapIgnoreAttribute()> <DataMemberAttribute()> ...
1
vote
1answer
42 views

Why is code launched on threadpool (via Task.Run) slower than the same code run in BackgroundWorker?

I have several calculator classes that perform custom calculations. Historically methods of these classes have been launched via BackgroundWorker, because they were lengthy, run-time wise. Recently I ...
0
votes
3answers
37 views

How to sort List<Point> [duplicate]

I have this variable: List<Points> pointsOfList; it's contain unsorted points( (x,y) - coordinates); My question how can I sort the points in list by X descending. for example: I have ...
1
vote
1answer
38 views

Date format with AM/PM designator is not correctly parse

I'm using this code to convert a string to date. Dim outputDate as Date ' I have tried also with DateTime Dim inputStringDate as String = "January 14, 2013 PM" Dim dateFormat as string = "MMMM dd, ...
0
votes
1answer
12 views

Serialization of ISolution - Roslyn CTP3

I have been experimenting with Roslyn in the context of meta-programming, but have encountered difficulties in persisting ISolution or IProject objects to a database. Here is what I have tried to ...
2
votes
1answer
94 views

(Nearly) all garbage collections are full collections

I have been collecting performance counters for a managed application over roughly four days. During that time, there have been the following garbage collections: Generation 0: 133,695 Generation 1: ...
3
votes
3answers
3k views

Copy file to a different directory

I am working on a project where I want to copy some files in one directory to a second already existing directory. I can't find a way to simply copy from one folder to another. I can find copy file ...
1
vote
2answers
44 views

How to set correct file permissions for ASP.NET on IIS

HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid. Error Code : 0x80070005 Config Error : ...
53
votes
9answers
150k views

URL Encoding using C#

I have an application which I've developed for a friend. It sends a POST request to the VB forum software and logs someone in (with out setting cookies or anything). Once the user is logged in I ...
0
votes
1answer
3k views

MS Chart, X axis dates and cursor interaction when X value is indexed

Good afternoon, Wow what a title. Basically here is the thing. If have a time series which is not continuous. Hence, since I use the IsXValueIndexed property of the Series (set to true) to ...
0
votes
1answer
28 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
2answers
83 views

Understanding async/await without threads

According to MSDN, async and await do not create new threads: The async and await keywords don't cause additional threads to be created. With this in mind, I'm having difficulty understanding ...
4
votes
2answers
1k views

Convert String to Int for use in Max() Entity Framework Query?

Is there any way to do something like this using Entity Framework so the generated query is written to execute entirely on the database server side? This used to work with Linq-to-SQL, but ...
0
votes
2answers
36 views

endMethod never called in TaskFactory<T>.FromAsync()

I have the following Silverlight code. Container container = new Container("http://localhost:8080/odata"); DataServiceQuery dsq = container.MyEntity; IEnumerable result = ...
3
votes
1answer
197 views

Storing a users Time Zone preference

My requirement here is fairly standard; I need to allow users to select their current TimeZone and save it against their account. I will then use this value to to convert stored DateTime values to a ...
0
votes
1answer
12 views

Where is IsolatedStorage located on the filesystem when using IIS/ASP.Net?

For one reason or another, I'm using IsolatedStorage with ASP.Net under IIS 8.0(Integrated mode w/ .Net 4.5). This actually works exactly as I'd expect. However, it's very handy to debug isolated ...
2
votes
4answers
44 views

Is there any risk in upgrading from VS2010 to VS2012 in the middle of project development?

I have been working on a rather large project for approximately two years in VS2010. I just got a license for VS2012 but I have some fears regarding what may happen if I remove VS2010 and attempt to ...
9
votes
4answers
5k views

.net / winforms: remember windows size and location

i have a windowsfroms application with a normal window. now when i close the application and restart it, i want that the main window appears at the same location on my screen with the same size of the ...
0
votes
2answers
48 views

Why does my WriteLine loop terminate prematurely?

I have a function to read from a file, and another to write to a file. The file I am trying to read and write is the numbers from 1 to 3000 in order. I read the file just fine and store it in a ...

1 2 3 4 5 3093