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#, ...
7
votes
0answers
462 views
Scrolling in virtualized WPF TreeView is very unstable
If virtualizing is enabled in TreeView with items having various sizes, multiple problems appear:
Vertical scroll bar changes its size randomly and doesn't remember sizes of elements after viewing ...
6
votes
0answers
71 views
WCF ExceptionShielding Error ID does not match up with handlingInstanceId passed to Handler
I have the following decorated on my service
<ExceptionShielding("MyExceptionPolicyName")>
when a fault exception is thrown, my policy picks up the error and logs in just fine. It takes the ...
6
votes
0answers
380 views
Adding Coded UI support for Silverlight 5 application - System.Core fails to load
I'm having a following problem:
Trying to add support for creating coded UI test for Silverlight 5 application (MSDN). First step is to reference assembly ...
6
votes
0answers
95 views
Correct way of updating a RemoteAPP application with NGEN
We have a Windows2008R2 RemoteAPP .NET 4.5 application NGEN-ed on the RDS server, with approx. 300 concurrent users for the 3-host NLB cluster.
The application is under active development and the ...
5
votes
0answers
10 views
ReactiveUI ObservableAsPropertyHelper / Reactive Extensions Memory Leak?
I noticed that in my .NET 3.5 application, which uses ReactiveUI, I have a significant memory leak that seems to originate in ObservableAsPropertyHelper. I created a test project to demonstrate it ...
5
votes
0answers
120 views
How to tell when in the VBA window
I'm working in C#.net and basically I want my plug-in to be able to tell if when the user saves, the save is coming from Excel itself or if the save is coming from the "Visual Basic for Application" ...
5
votes
0answers
44 views
How do you handle a Password Change when using WCF and DefaultCredentials?
I have a client that uses a WCF proxy to call a service and credentials etc works fine normally but if the user changes their domain password and I restart the app then I am unable to call the service ...
5
votes
0answers
270 views
fluent nhibernate not supported exception newexpression
can anyone help me figure out what I'm doing wrong. I'm new to nhibernate and I'm finding it quite hard to really get comfortable with it. I have this query:
var results2 = (from purchase in ...
5
votes
0answers
3k views
Call stored procedure inside TransactionScope in Entity Framework
I using Entity Framework 4 and meet following issue whith executing stored procedure in ambient transaction.
Here is the code:
public void UpdateOrderRequest(IOrder order, int requestId, int userId, ...
4
votes
0answers
104 views
MSBuild File to Run Code Analysis Without Overlap
I am creating an MSBuild file to combine some tasks of the things I need to do on my build server into one step. Part of this process requires running code analysis. My problem is that I have running ...
4
votes
0answers
125 views
MEF Import fails in Windows Service
I am having an issue in the MEF composition within my Windows service
The below classes are the partial classes that inherit from the System.ServiceProcess.ServiceBase
Imports System.ServiceProcess
...
4
votes
0answers
705 views
Selenium WebDriver throws Timeout exceptions sporadically
Using selenium for ui tests on our project. We are running the newest version 2.30.0.
We use Firefox WebDriver and are running Firefox 19.0.
Generally said the ui test works local and even server ...
4
votes
0answers
90 views
Reading a file from a network share sets its creation time to its last write time
When I read a file from a network share it updates the creation time to the last write time. This causes me problems with System.Configuration.Configuration because it thinks the file has changed and ...
4
votes
0answers
125 views
DebugDiag not showing .NET stack information under .NET 4
Feels like there's probably a simple answer to this, but I haven't been able to find it.
The scenario in question is a C# .NET Console app.
I commonly use DebugDiag 1.2 to examine .dmp files that ...
4
votes
0answers
213 views
HtmlHelper extension to wrap around content for ServiceStack Markdown Razor
Using ServiceStack Markdown Razor, how can I create an HtmlHelper extension method that works like:
In your views you can now do:
@{
using (Html.BeginLink())
{
@Html.Raw("Hello ...
4
votes
0answers
491 views
Compiling F# code on Ubuntu 12.04 using Monodevelop
I followed the instructions here for installing Monodevelop with F# support on Ubuntu, however when I open Monodevelop and try to compile a simple F# program I get the message:
Error: Framework ...
4
votes
0answers
63 views
Tailcall elimination in Mono
I have a .NET 4.0 application that makes heavy use of tail recursion (programmed in F#). It runs fine on the .NET VM, but it runs out of stack on Mono-3.0.1.
I've tried running with mono ...
4
votes
0answers
186 views
Catastrophic failure when Impersonate other user
I'm use Enterprise library Validation block intergrated with WCF. It reports System.Runtime.InteropServices.COMException (0x8000FFFF): Catastrophic failure (Exception from HRESULT: 0x8000FFFF ...
4
votes
0answers
172 views
Is version control with Word/Office, but using a proprietary document repository (i.e. NOT Sharepoint), catered for with some sort of provider model?
I cant find any resources for hooking into the version control features offered by Word 2010. I know that it hooks in seamlessly to Sharepoint in terms of providing features to access the Sharepoint ...
4
votes
0answers
115 views
Is it possible to marshal ref parameters in SAFEARRAY
public void Exec(out int status, string output)
{
status = 3;
Console.WriteLine("Exec({0}, ...)", status);
output = string.Format("Hello from .NET {0}", DateTime.Now);
...
4
votes
0answers
372 views
WPF's BitmapCache is not completely cleared
We have a WPF Page with a user control where we use a BitmapCache - when we try to clear this element by updating the property (Data Binding) with an empty Path (New Path()), it is not completely ...
4
votes
0answers
475 views
System.Directoryservices.DirectorySearcher causing Arithmetic operation resulted in overflow errors
I'm getting the following intermittent errors related to querying AD using
DirecotrySearcher.FindOne() or FindAll().
System.OverflowException: Arithmetic operation resulted in an overflow.
at ...
4
votes
0answers
96 views
Why is skipping visibility checks only allowed for dynamic methods?
I am porting code which uses DynamicMethods extensively to allow for precompilation, for better cold startup performance. I noticed that DynamicMethods can be JITted and executed with visibility ...
4
votes
0answers
183 views
Options for Lucene.NET clustering?
I am interested in running Lucene.NET for an application that runs in Windows clusters. The search problem itself is reasonably small, but the stateless/cluster problem still has to be handled.
I ...
4
votes
0answers
2k views
Connection_Abandoned_By_ReqQueue Problems
I have this strange problem. I have 3 sites using the exact same code. All are on the same dedicated server and all have their own app pool. It's Windows 2008 R2 server. One of the sites keeps ...
4
votes
0answers
474 views
VB.NET how to handle packet send/ack
I'm building an application to communicate to an Xbee module via the Xbee API.
Currently I have something working, but its fairly simple and has quite a few limitations.
Sub processPackets() ' this ...
4
votes
0answers
905 views
.NET ViewState Decoder
Is there any viewstate decoder that really works on .net 4?
I tried Onion's and several other online decoders. There was also an add-in for firefox but that is not compatible with ff4.
I get this ...
4
votes
0answers
341 views
NHibernate and SQL Server 2008 encryption
How to perform SQL Server built-in encryption/decryption with NHibernate? I mean encryption of separate columns.
4
votes
0answers
236 views
How to add support for a new language in FlashDevelop?
I am interested in making a plugin for FlashDevelop to add support for another language. I am not too sure where I should start. So any starting points, hint, tips, or advice would go down well.
...
4
votes
0answers
264 views
Why is NUnit hanging from the command line, but not under TestDriven.NET?
If I start my unit tests from TestDriven.NET under VS2008, they run pretty much immediately.
If I start my unit tests using nunit-console.exe, the NUnit console hangs for five minutes before ...
3
votes
0answers
39 views
Enumerating container names of the strong name CSP
I'm trying to find some information about how to (if at all possible) enumerate all container names in the Strong Name CSP (Cryptographic Service Provider).
Essentially, when you type sn.exe -i ...
3
votes
0answers
21 views
Orchard CMS 1.6.1. slow to load pages (Azure)
I am developing a big project on Orchard CMS. I decided to create simple promo site (without my modules) based on Orchard while developing the project. I've successfully deployed Orchard into Azure, ...
3
votes
0answers
64 views
Need some clarification about app.config and user.config
So I have been poking around both here on SO and google for the last few days for information about app.config.
I am writing a program that will need to generate SQL scripts using values entered by a ...
3
votes
0answers
46 views
Is it possible to change a Nuget package reference based on the targeted platform?
I am creating an application that uses the Oracle Data Provider for .Net. Some of my clients will be running the application in a 32 bit environment, and others on a 64 bit architecture, so I need to ...
3
votes
0answers
26 views
How to use ConsoleCancelEventHandler several times
I've been busy coding a application that functions as a frontend: it has a GUI taking command line options with buttons and things like that and passing them to a command line .exe. It uses the ...
3
votes
0answers
153 views
How to draw a string without padding
I am using the GraphicsPath.AddString() funtion, but it draw the text with a little space around the text, any idea how to draw the string without that padding, only the paths of the text.
my code is ...
3
votes
0answers
25 views
How to exclude class name from the name of the inherited test in NUnit
I have a base class with testcases(methods). Also I have another class inherited from base class with some overloaded test cases(methods).
The issue is that names of inherited testcases(in ...
3
votes
0answers
175 views
DLR - Why isn't debug information showing up in my stacktrace?
First, I've read Making a CLR/.NET Language Debuggable, but am still having trouble implementing this.
I've written a toy language that works by generating a Linq Expression, then calling ...
3
votes
0answers
154 views
custom control design-time
I want to create my own TabControl-class with design-time suppport.
This is my designer:
public class TabListDesigner : ParentControlDesigner
{
protected TabList TabListControl { get { return ...
3
votes
0answers
140 views
Efficient way to replace specific color in Bitmap/Image
In my grayscale picture I need to find specific value and replace it with some color, e.g yellow. Here is the code which I have right now, but it's not as fast as I need. Is there any more efficient ...
3
votes
0answers
95 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 ...
3
votes
0answers
133 views
Visual Studio 2012 and Resharper's goto implementation
In my case I can be writing code in a controller class of an ASP MVC project and use the "Go to Implementation" feature (Ctrl+f12), then instead of going to my implementation it presents a popup ...
3
votes
0answers
90 views
Boo compiler throws “Attempted to read or write protected memory” occasionally
I sometimes get the following exception when compiling the Boo scripts:
A unexpexted thing happened, C:\Resources\temp\de4ee12533b34facbb80d007648a48f2.BackendRole\RoleTemp
...
3
votes
0answers
235 views
How to read back status from Zebra receipt printer?
I'm using a Zebra KR403 receipt printer for a project and I need to programatically read the status from the printer (out of paper, paper near-end, printhead open, paper jam, etc). In the ZPL ...
3
votes
0answers
178 views
Enumerate Active Directory group members (nested) including Domain Users (Primary Group)
Currently I use the GetMembers-method of the groupprincipal-class (.NET 3.5) (with true) to enumerate all members of a group (incl. nested groups).
If in a subgroup the primary domain group ...
3
votes
0answers
118 views
SelectedItemIndex Mismatch when using a CollectionView refresh on a SL ComboBox
If you have a ComboBox bound to a CollectionView. Issue a REFRESH on that CollectionView and that filters out certain items thus changing the position of your selected item and reducing the size of ...
3
votes
0answers
110 views
Impersonation/Delegation with SourceSafe Interop
I'd like to open a source safe database using Interop.SourceSafeTypeLib 5.2.0.0 on SourceSafe 8.
This should happen in a server service running under 'network service' account. The server service ...
3
votes
0answers
112 views
Assembly redirect in multiple environment / eg, for F# 4.0.0.0
I received a new machine and thought plugging in some machine wide redirect would just work for my FsCheck tests would work like in my previous machine.
That was not the case, and I received a ...
3
votes
0answers
125 views
MSMQ MessageQueueException For a short while after startup
I've got a multi-user planning application where a client sends msmq messages containing their changes to a server application, which processes them, calculates stock/time shortages, and then messages ...
3
votes
0answers
87 views
WaitForDebugEvent() API on .NET application
I have a launcher application that creates a process and monitors it with the WaitForDebugEvent/ContinueDebugEvent API functions. That application is written i C++ and it works fine for the unmanaged ...