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)

1
vote
0answers
17 views

Returning Expression<> using various class properties

I have something like this: public Expression<Func<Message, bool>> FilterData() { switch (this.operatorEnum) { case FilterParameterOperatorEnum.EqualTo: return ...
3
votes
1answer
104 views

X509Certificate2 makes IIS crash

When newing up an instance of X509Certificate2(string, string) my IIS process simply crashes. No .Net exception, no nothing, except of this in my event log Faulting application name: w3wp.exe, ...
0
votes
0answers
7 views

WS-Discovery: How to disable endopoint discoverability (c# and .net)

today I've a little problem with the UDPDiscoveryEndpoint and EndpointDiscoveryBehavior. Below there is a little snapshot of my code: ServiceHost _service = new ServiceHost(typeof(myService)); ...
1
vote
1answer
29 views

C# Delegate as object

Disclaimer: the unit-test related info for this question is not really relevant - you can skip to "The Problem" if you're not familiar with this, but it helps set the context. I have a class that I ...
0
votes
1answer
34 views

I have created a class for executing actions, but which extendable design pattern should I actually use here?

I have created a class which can execute methods by a string code (this is what I want actually, since the (already existing) database contains these codes. However I want this to be more extendible ...
5
votes
0answers
28 views

Which download for .net source

Following this question, looking here http://referencesource.microsoft.com/netframework.aspx you see this list currently: Product Name Version View Download .NET 8.0 dotnetfx1434_VistaWin2k8sp1 ...
0
votes
1answer
15 views

How to Change Position of a control depending on selected value of ComboEdit at runtime in WPF?

I have a ComboEdit which shows Country List in it. On the form their is an ADDRESS tab which is set to active on selection of ComboEdit value. The Position of Controls on ADDRESS tab must be change ...
0
votes
1answer
10 views

Six channel output with NAudio? (Or suggestions for other .NET library that supports it?)

I've written a method in C# using NAudio that successfully outputs 2 channel sound, but fails at 6 channel sound. When using WaveOut, I get 'MmException was unhandled: InvalidParameter calling ...
0
votes
0answers
5 views

Runing service on remote computer fails

I have a problem when trying to run a service on remote computer using administrator command line. I always get that error: [SC] OpenSCManager FAILED 5: Access is denied. So i googled it and found ...
2
votes
1answer
49 views

Can you get Method name that threw Exception?

Is there a C# method that returns to the upper-most caller, the Name of the Method that threw an exception? I do not want to re-throw exceptions all the way up the chain. My current kludge, is to ...
0
votes
1answer
88 views

Add tooltip for combobox items

I am using the onDraw function to add a tooltip for combobox items and it is working fine. However my combobox is on a spliter form. Therefore, when you move the spliter this can force a OnDrawItem ...
2
votes
0answers
25 views

A static factory method on a generic or a non-generic class?

I have a generic class, let's call it MyClass<T>, which will need to have a factory method so to abstract constructor details away from client code. Which of the two options is correct? ...
0
votes
0answers
7 views

How to obtain latest libwebp.dll?

I would like to use the WebP encoder from my C# project. When I go by Google instructions I get this error: Makefile.vc(16) : fatal error U1050: Unable to auto-detect toolchain architectur e! If ...
0
votes
1answer
12 views

Windows project deployment (with WIX, InstallShield etc.) - Easy solutions?

Recently, I had to learn the hard way that Microsoft removed the famous Installer project from Visual Studio 2012. Even though they announced a few years ago that support will be discontinued, like ...
1
vote
0answers
7 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
1answer
268 views

How can I set the physical path of this xml file programmatically?

I have my hibernate.cfg.xml congif file placed in PersistenceManager project as you see in the picture. And I need programmatically to set the physical path to this configuration file in this ...
1
vote
1answer
24 views

using Naudio to play Stream of Wave

I want to change the bit rate of wave file. so I searched in the net and I figure out that the wave file contain a header which is 44 bytes length , and the 25,26,27 and 28 byte are used to store ...
0
votes
0answers
4 views

Call Siteminder protected restful service in AIR

I'm working on a AIR application which needs to call a Restfull service protected by siteminder. I've no clue to do that. Can someone out there throw some light on how to do that? var ...
0
votes
3answers
36 views

How to assign index of the collection to property

I have following linq query productionMachines.OrderBy(x => x.TimeDone).ToList(); Now I want to assign to some property X, index of it's location in the collection. Like the first ...
0
votes
1answer
27 views

Winform handling

I have 3 forms. We can enter to form2 through form1.(Then form1 will disappear.) When we close form2, form1 will reappear. Similarly we can enter to form3 through form2.(Then form2 will disappear.) ...
3
votes
2answers
1k views

Headless webkit for .NET

Do any of you know of a headless webkit wrapper for .NET? I've looked at WebKitDotNet but it does not seem to work in headless mode.
2
votes
1answer
18 views

Structures in VB .NET like COBOL

I'm converting a COBOL program to VB .NET. Is there any way to use the structures in VB NET like COBOL does? In example: COBOL: 01 VAR1 10 VAR11 PIC X 10 VAR12 PIC X MOVE 'AA' TO VAR1 ...
11
votes
2answers
2k views

How to fix flicker in a WinForms form?

I am constantly drawing frames, and I need the form to not flicker. How do I accomplish this? public partial class Form1 : Form { Image[] dude = new Image[3]; static int renderpoint = 0; ...
0
votes
1answer
24 views

Compare two lists in .Net and action depending on which lists items are in

I have a web page that saves a list of changes, so in the save action I have two lists, one with the new values and one with the existing ones. I want to: Loop through both lists, unioned and ...
0
votes
0answers
25 views

RichTextBox Colours not working

I am trying to write some text in a richtextbox and writing them in red if they are not correct. The correctness of them is irrelevant for my problem. I cant achieve to paint the incorrect lines in ...
0
votes
0answers
34 views

Control not visible even ctrl.Visible = true

I use following code (C#, Net4) to update the visibility of a label (its initially not visible): Task.Factory.StartNew(() => { this.BeginInvoke(new Action(() => ...
0
votes
1answer
41 views

asp.net mvc4 project compiles ok but gives the yellow screen of death

looks like i'm not the only one with this issue Visual Studio 2010 is not catching compile errors on build ...
0
votes
1answer
7 views

How can I make a PSDrive created within a function accessible out of this function?

I assume creating a new PS-Drive within a function makes that drive only accessible within that function. How can I make a PS-Drive created by calling a function from the MAIN accessible out of that ...
1
vote
0answers
56 views

LINQ - Not returning the same value as SQL Server

I have a really weird issue. I have this query: var systemAppEntityViewModelFieldCustom_SecurityByUserList = (from t in coreEntityModel.SystemAppEntityViewModelFieldCustom_SecurityByUser ...
0
votes
0answers
17 views

Using two contexts in one Transaction and error with DTC

In one transation I use two different contexts: using (TransactionScope scope = new TransactionScope()) { using (Entities1 context = new Entities1()) { .... } using (Entities2 ...
0
votes
0answers
13 views

sitecore comments list to article

I need to add funtion of comments to my blog. I have an article. And I need after that article comments section. Maybe I'm stupid but I don't know how to solve that... Can you tell me any ideas or ...
-1
votes
0answers
20 views

Dynamic creation of WCF Service and Interface

I have class and method information. How to dynamically (programatically) create WCF Service and Interface for that. Any ideas?
0
votes
0answers
8 views

how to use .net membership user passwords in delphi

I have a .Net application that uses Membership to manage Username and Passwords. Now I provide another application with Delphi that should use the same users. I mean I should create users in my ...
139
votes
10answers
124k views

C# generic list <T> how to get the type of T?

Let say I have a List< T > abc = new List< T >; inside a class public class MyClass<T>//.... Later, when I initialize the class the T becomes MyTypeObject1. So I have a generic list ...
0
votes
2answers
15 views

1 Line VB.NET Code to VB6

I am stuck on a really stuck with this one line. In vb.net this is easy, but how do I do this in vb6? Tried to search from google for few hours and got nothing. Feels almost embrassing. Here's the ...
0
votes
0answers
10 views

[System.Net.Dns]::GetHostEntry method resolves IP to HOSTNAME without PTR record?

I am trying to use Dns.GetHostEntry method to get the HOSTNAME for a given IP from the DNS server. According to the documentation, the method first tries to do a reverse lookup on the IP address. In ...
3
votes
1answer
335 views

How do Entity Framework pre-compiled views get loaded

I've discovered I can increase performance of my application by pre-compiling my views using the EdmGen.exe tool. This is all well and good, but neither me or my colleges can work out how the ...
32
votes
4answers
16k views

Is a bool read/write atomic in C#

Is accessing a bool field atomic in C#? In particular, do I need to put a lock around: class Foo { private bool _bar; //... in some function on any thread (or many threads) _bar = true; ...
0
votes
1answer
20 views

Restrict multiple edits on any objects, c# 2012

I have many objects like Pg, Layout, SitePart etc., Multiple users can edit these objects and can save them back to Data base. However at a time only one user can save the changes to DB, and let the ...
0
votes
1answer
23 views

Not able to use Modern UI Charts for Windows 8

I am trying to use Modern UI Charts for my Windows Store app but I am not able to get it working.(Cannot see the Chart) A similar issue was logged by another person here along with the code Can ...
2
votes
3answers
2k views

VB.Net 2010 - Retrieve MemberValue from ComboBox

I have been working on this for three days now and just can’t find a simple answer. (It really can’t be that hard to do surly). but now I can’t see the trees for the forest anymore. I populate a ...
0
votes
0answers
11 views

Use Google Custom Search API in VB.NET

I'm a beginner in this field. I want to know how I can use new Google Custom Search API (https://developers.google.com/custom-search/v1/overview) in a VB.NET project, if it is possible. I've found a ...
0
votes
1answer
22 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
3answers
39 views

Display mouse position in Silverlight 5, MVVM

For the record: I'm new to Silverlight and XAML. I'm trying to simply display the mouse coordinates relative in my canvas (or any other element). After reading a lot on the subject, unfortunantly I ...
1
vote
1answer
22 views

Does the .NET Garbage Collector's stop-the-world effect halt or delay the execution of unmanaged threads and timer callbacks?

I have an application that needs to have code executed at very precise intervals. For that purpose I also need Windows' scheduler resolution increased to 1ms via timeBeginPeriod. To do that, I have a ...
1
vote
1answer
42 views

Filtering For duplicate entries in ICollectionView

I have a class as Class ABC() { public string Name{get;set;} public string Category{get;set;} } List formed by this class is having value as :- Name = "A", Category = "Alphabet" Name = ...
2
votes
0answers
14 views

VB.net and Webservices Exception

I am calling a webservice through VB.NET. I have done a AddWebReference to create the bindings. When a WS call throws an exception, I am able to catch it as a generic Exception object Catch ex As ...
10
votes
3answers
5k views

ListBoxItem produces “System.Windows.Data Error: 4” binding error

I have created the fallowing ListBox: <ListBox x:Name="RecentItemsListBox" Grid.Row="1" BorderThickness="0" Margin="2,0,0,0" SelectionChanged="RecentItemsListBox_SelectionChanged"> ...
-1
votes
0answers
29 views

How to embed a text rendering engine into DotNet Application?

I have a problem in text rendering engine in different Windows OS so I want to embed a working rendering engine into my vb.net application. Does Anyone know how to do this or any other alternative ...
0
votes
0answers
18 views

Can't run umbraco project @ localhost

Error Message : A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is ...

1 2 3 4 5 3091