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
0answers
24 views

Loading assembly in another appdomain from another folder with dependencies

I've found a few variants of this question but it seems mixing all those criterias produces it's own set of errors when you want your assembly loaded In another appdomain From another folder With ...
0
votes
1answer
30 views

EF load related collection partially

What I'm trying to achieve is return a list of Categories (in JSON) with the latest (Top 1) modified product in it. Say I have a Product & Category classes. Class Category{ public string Name ...
0
votes
1answer
52 views

Match more than one occurence in a string

I'm trying to match a tag values (music kind styles) of an xml. This are some examples: One music genre: (Pop) (rel="tag">Pop) <span class="genres"><a ...
0
votes
2answers
43 views

How to show a sidebar in all pages in mvc4 except 2

We currently have a site which has a section LatestNews, required:false defined in the layout and all views except two have the section which have the same call RenderPartial("ShowLatestNews") Is ...
1
vote
1answer
18 views

TaskFactory.StartNew or TaskFactory.FromAsync: which one guarantees faster execution of computation-intensive TPL tasks in application?

If I start computation-intensive TPL task with the button's click from UI, which method will be the best here: TaskFactory.StartNew or TaskFactory.FromAsync? I'm in need of the following: the task ...
0
votes
1answer
34 views

How to select Closest distance from each category

I'm trying to get the closest locations in each category. Can anyone help me do this? var xml = new XElement("Locations", locations.OrderBy(n => n.CategoryID) ...
2
votes
3answers
79 views

How to make a copy of an object in c#

Let's say that I have a class: class obj { int a; int b; } and then I have this code: obj myobj = new obj(){ a=1, b=2} obj myobj2 = myobj; Now the above code makes a reference to the first ...
0
votes
2answers
14 views

XML Data Binding in .NET - Getting node value where attribute value is equal to something

I'm developing a .NET control which needs to list values from an XML file based on an attribute value in a node and I'm having difficulty getting to my data. The XML is formatted like this: ...
0
votes
0answers
16 views

Why does RatNum not have a ToDecimal() method?

I'd like to convert a RatNum expression to a Dot Net decimal. RatNum has a ToDecimalString method but not a ToDecimal method. Is there any reason for this? Is there any other way to convert a RatNum ...
0
votes
1answer
5 views

Update command using grid subform

I'm putting together a simple list using a Telerik grid and a sub form (edit form?) to add or change data. So far adding a new record works great: I set up the parameters, sent them to a stored ...
0
votes
1answer
19 views

Set ListBox selecteditems by the ItemText?

I have a Listbox with 100-200 default values and the multiselect-simple mode is enabled. I save the selected text items in a List of string: Private Sub ListBox_Styles_SelectedIndexChanged(sender As ...
0
votes
1answer
19 views

DebuggerDisplay attribute on a DebuggerTypeProxy Class

When using [DebuggerDisplay("{OneLineAddress}")] on the debugger proxy'd class, it does not seem to work. Is there something I'm doing wrong? Or some way around this without adding code to the ...
0
votes
0answers
12 views

Lucene.net: How to implement Sort & Search on dynamic fields

Currently my application use MSSQL for Sorting and Searching. The data in the app is a list of Tasks, Every Task can have multiple dynamic values (unknown number). Example: Task1 – DynValue1, ...
0
votes
2answers
60 views

Am I using this transaction correctly?

I read a list of VehicleMovementEvent objects, most of which are plain entrances to and exits from a parkade zone. These have an indicator of entrance or exit, and a date and time. I use this list to ...
-8
votes
0answers
101 views

Why the malloc in c# is unsafe? [closed]

Why use the "malloc" method in C# is unsafe? Okay, the garbage collector manage the memory for me, but it is sure that is the best method to do that?
1
vote
0answers
51 views

Does order of parameters in logical operators matters equality?

I'm constructing some class that will contains a logical expression: public enum LogicalOperator { And, Or }; public class LogicalExpression { public LogicalOperator Operator { get; private set; ...
0
votes
0answers
7 views

Finish Build Trigger only fires when parent build is called manually

I have setup a service hook for teamcity build (A) so that my solution is built when i push to github. I then have a seperate build (B) configuration with a Finish Build Trigger which does some work ...
1
vote
0answers
54 views

Push object away from another object

I'm trying to call a method 20 times per second to push point A away from point B. The method should use the following variables: Point A (X) Point A (Y) Point B (X) Point B (Y) Strength The ...
0
votes
1answer
85 views

Learning from a slightly outdated .NET book [closed]

Will learning from a book that targets .NET 3.5 (Essential C# 3.0: For .NET Framework 3.5 (2nd Edition)) be regressive in a sense? Of course in time I want to be able to leverage the features of 4.5, ...
0
votes
1answer
21 views

How to remove the top left cell in DataGrid

Is there a way I can remove the top left cell in a DataGrid ?
0
votes
0answers
14 views

Getting lfPitchAndFamily of LOGFONT in C#

I want to get some font properties (monospace and serif) of Font in C#. I use LOGFONT fot this aim. But for some reason lfPitchAndFamily field of LOGFONT is not defined. Why? My code: var b = new ...
0
votes
3answers
52 views

Entity Framework/Linq EXpression converting from string to int

I have an Expression like so: var values = Enumerable.Range(1,2); return message => message.Properties.Any( p => p.Key == name && int.Parse(p.Value) >= values[0] ...
0
votes
1answer
32 views

Add Office 2013-like animations to my C# application

So, in Office 2013, the applications have animations such as a "smooth typing" animation, along with things such as the email list in Outlook smoothly moving emails rather than just deleting one out ...
0
votes
0answers
14 views

MSTest Doesn't Pull Down Different Versions of Newtonsoft.JSON.dll

We use MSTest to run automated tests against our solution. Some of the projects in the solution are targeted for .NET 3.5 and are referencing Newtonsoft.JSON.dll version 4.0.8. Other projects are ...
1
vote
1answer
28 views

Filtering navigation properties in EF Code First

I'm using Code First in EF. Let's say I have two entities: public class Farm { .... public virtual ICollection<Fruit> Fruits {get; set;} } public class Fruit { ... } My ...
28
votes
2answers
853 views

Why does C# allow statements after a case but not before it?

Why does C# allow this: var s = "Nice"; switch (s) { case "HI": break; const string x = "Nice"; case x: Console.Write("Y"); break; } But not this: var s = ...
0
votes
2answers
41 views

C# - Windows Forms - Windows 7 - Overlay another application's window

I have an application that needs to overlay another application's window. As the overlayed moves I need my application to move along with it. I am using the following code to get the window and ...
0
votes
0answers
9 views

Upload any video and convert to .mp4 online in .net

I have a strange requirement. User can upload their video of any format (or a limited format). We have to store them and convert them to .mp4 format so we can play that in our site. Same requirement ...
0
votes
1answer
51 views

SQL Error: The data types text and nvarchar are incompatible in the equal to operator.`in C#

This code was working perfectly fine, today I tried to execute it, and now I am facing this exception: I have this SQL error : Exception Details: System.Data.SqlClient.SqlException: The data ...
0
votes
1answer
17 views

Windsor TypedFactoryFacility, selecting a component based on argument type

I have the following typed factory: public interface IWorkerFactory { IWorker Create(IJob job); void Release(IWorker handler); } This factory creates workers for a given job. The jobs all ...
0
votes
0answers
10 views

System.Windows.Input.KeyInterop.VirtualKeyFromKey() does not Work?

Having e As System.Windows.Input.KeyEventArgs and trying to transform the Wpf Keyboard Event to a WinForm one, I do: Dim myKeys As System.Windows.Forms.Keys = DirectCast( ...
0
votes
0answers
10 views

What is the Isolated Storage Location in Windows 7 and 8?

I want to store a file in my Windows 8 or Windows 7 Isolated Storage location.? Knowing the location, i want to place some files in the location. So, how to get the location of the isolated storage ...
0
votes
2answers
28 views

plaintext passwords show up in http headers

I am helping test a .NET application that accepts a user's name and password. The application runs over SSL and is hosted via an iframe on a page that is also setup with SSL (so the user can see the ...
1
vote
1answer
20 views

VB.NET print pointer of COM Objects

I want to print the memory address of my .NET compiled object imported with DLL. The code for pinned object are (googling): ' dim managed variable Dim primitiveObject As String="HELLO WORLD" ' pin ...
1
vote
2answers
23 views

Can I write the results of SimpleInjectors diagnostics to a log file?

Using SimpleInjector I call container.Verify() at the end of my configuration, and get the diagnostics information in the debugger as described in the documentation. I would like to write that ...
0
votes
2answers
25 views

OleDb Parameters, null value

I have the following code, OleDbCommand cmd = new OleDbCommand("SELECT * FROM Users WHERE username = ? AND password = ?",conn); OleDbParameter p1 = new OleDbParameter(); OleDbParameter ...
0
votes
1answer
12 views

Windows installer: Error 1001, CustomAction _xxxxx.install returned actual error code 1603

Question: I have created an installer for a windows service with Visual Studio 2012 and InstallShield. The service runs fine. The installer runs fine on my development machine (windows 8 64 bit) and ...
0
votes
3answers
54 views

what is the rollback mechanism of software installation

I do a software installation, and when I later click Cancel button to let it stop(UI processBar stop too.), next if I choose Yes installation rollback will be done(what is confused me), or if I choose ...
12
votes
4answers
221 views

Why check if a class variable is null before instantiating a new object in the constructor?

With a previous team I worked with, whenever a new Service class was created to handle business logic between the data layer and presentation layer, something like the following was done: class ...
0
votes
4answers
62 views

Replacing whole values within a string

I have a string which contains some ids, basically a sql expression within a string. I need to present it to user in a more friendly manner ie. Replace ids with names from the database. The problem is ...
0
votes
2answers
42 views

C# Xelement not able to retrieve elements

I'm trying to test the Linq for retrieving some values of elements in the xml file: Here is the code: try { XElement doc = XElement.Load(@"Z:\test.xml"); string ...
1
vote
1answer
47 views

Only getting 1 button from 4 Enum values, Why?

I need to generate the Enum values as radio buttons as below, but for one prop of 4,5 values am only getting a groupbox with 1 button, item1. where am I wrong ? private void ...
1
vote
1answer
21 views

what is the best way to upgrade web.config?

I have a web application to which I wrote an upgrade utility. It rewrites the binaries and updates the web.config (with new sections, changed attributes, elements etc..). I want to preserve my ...
2
votes
1answer
44 views

How to query an embedded XML file using LINQ?

[C# .NET 4.0 WinForm LINQ] I had an XML file that I added to my project as Content, but I'm now having to make it an internal, embedded resource so it will compile with the executable and I won't ...
1
vote
1answer
73 views

LINQ Select with join and optional where

I have table with recipes and table with recipe categories. There are diferent type of categories in another table. I have optional parameter for category, my tables and linq select looks like: ...
0
votes
1answer
9 views

Implement multilogin restriction in Asp.net

I have one problem when "A" user logged in from 1 PC using "ABC" credentials.similarly when "B" User login from another PC using same credentials the "A" user must be kick out from his account.I have ...
0
votes
2answers
72 views

string variable changes to 'null' automaticly

I have encountered somthing weird, i ame creating an instance of a class with reflection and this passes a couple parameters, one is the variavle: ipAddress, when creating the instance in the ...
0
votes
0answers
28 views

Override mainform function for a picture control

I am working on a graph plotting app and have encountered some difficulty in resolving an issue. Basically the jist of it is that I have a graph on my MainForm and I am trying to see a preview of it ...
2
votes
0answers
8 views

adding objects programmatically to powerpoint slides forcing all objects animation

I am adding some objects to a PowerPoint slide on the fly along with some animations. Problem is when I add any object after adding the first object then both the previously added object along with ...
1
vote
0answers
13 views

How to solve this macro error that only shows up when running in IIS?

I have developed a .NET application that access to an Access database. That Access database has some macros that generate PDF files using the info from the database. The application works perfect in ...

1 2 3 4 5 3096