Search Results

0
votes

What’s the best way to authenticate over WCF?

Why should WS-* be transport dependant? The whole point of the WS-* specifications is that they are part of the message, and hence transport independent. …
1
vote

Non Public Members for C# Interfaces

You can hide the implementation of an interface by explicitly stating the interface name before the method name: public interface IInterface { public void Method(); } public clas …
0
votes

Any recommendations for lightweight .net Win Forms HTML renderer controls?

While it takes a bit of effort, you can disable almost all of the 'extra' functionality of the built in WebBrowser control. If the built in web browser provides all the functionality you ne …
0
votes

Is Visual C++ memory managed by the Dot Net framework

Unless you are using Managed C++ (which it doesn't sound like you are) then no, the memory is not managed by the CLR. The recommended method of talking to Exchange in .Net is via WebDAV. …
37
votes

Is there an easy way to create ordinals in C#?

This page gives you a complete listing of all custom numerical formatting rules: http://msdn.microsoft.com/en- …
2
votes

Best way to replace tokens in a large text template

If you are doing multiple replaces on large strings then it might be better to use StringBuilder.Replace(), as the usual performance issues with strings will appear. …
1
vote

Loading assemblies and its dependencies

You can use the <probing> element in a manifest file to tell the Runtime to look in different directories for its assembly files. …
0
votes

Cannot access a disposed object - How to fix?

Another place you could stop the timer is the FormClosing event - this happens before …
1
vote

Manual steps to upgrade VS.NET solution and target .NET framework?

All versions of the .Net Framework from 2.0 onwards (i.e. 3.0 and 3.5) use exactly the same core framework files (i.e. the CLR, you'll notice there are no directories relating to 3.0 or 3.5 in the …
0
votes

UITypeEditor and IExtenderProvider

Have you considered adding the DefaultValue as a static property of the ExtenderProvider, then you can access it without requiring an instance of the provider? …
2
votes

How do I extract the inner exception from a soap exception in ASP.NET?

Unfortunately I don't think this is possible. The exception you are raising in your web service code is being encoded into a Soap Fault, which then being passed as a string back to your cli …
0
votes

What’s the simplest .NET equivalent of a VB6 control array?

The same click event can handle the button presses from multiple buttons in .Net. You could then add the the text box to find in the Tag property? Private Sub AllButton_Click(sender …
1
vote

How to use 32bit alpha-blended BMP in .Net

The PixelFormat enumeration lists the formats of 'bitmaps' you can create in .Net, so you'd want PixelFormat.Format32bppArgb: …
0
votes

Targeting multiple versions of .net framework

I know @John Boker is correct when it comes to .Net class libraries. Yo …
0
votes

Postback events from within DataView

Two things to keep in mind when using events on dynamically generated controls in ASP.Net: Firstly, the controls should ideally be created in the Page.Init event handler. This is to e …

1 2 3 next
15 30 50 per page