Search Results

1
vote

How to spread tcplistener incoming connections over threads in .NET?

I believe you do it in the same way as any other asynchronous operation in .NET: you call the BeginXxx version of the method, in this case BeginAcceptSocket. Your callback will execute on the threa …
1
vote

Rolling your own message loop, any pitfalls?

If you want to customize message processing, consider implementing IMessageFilter, then call Application.AddMessageFilter to tell the standard message pump to call your filter function. …
1
vote

Unescaping angle-brackets through System.Xml.XmlWriter

WriteString writes your content as a literal, and &, < and > are illegal in XML text, so they are escaped. If the other end is not unescaping them, that's where the problem lies. …
1
vote

How do I best localize an entire app to many different languages?

Microsoft's recommended approach is to use satellite assemblies, as described in Packaging and Deploying Resources …
0
votes

Anyone know of a list of delegates already built into the framework?

In .NET 2.0 and later, use EventHandler if you have no arguments at all, and EventHandler<T> if you want to provide some custom data (you will need to derive a class from EventArgs with your …
0
votes

Define an interface in C++ that needs to be implemented in C# and C++

The other approach is to use a 'flat', C-style API. You might as well use extern "C" to prevent accidental overloading. Use a DEF file to explicitly name the exported functions, so the …
1
vote

Help in creating Zip files from .Net and reading them from Java

To judge whether it's really a conformant ZIP file, see PKZIP's .ZIP File Format Specification. For what …
1
vote

.NET NumericTextBox

Some of the .NET Framework controls oddly do not expose all the features of the underlying Windows control that they wrap. In this case, for some reason the ES_NUMBER style has not bee …
0
votes

How to communicate with a windows service from an application that interacts with the desktop?

Funnily enough I was going to suggest Remoting! The http://go-mono.com/archive/1.0/features.html">Mono 1.0 Release Notes (from archive.org because the original location is missing) mention System.R …
1
vote

How to wrap an existing memory buffer as a DC for GDI

Use CreateDIBitmap rather than CreateDIBSection. …
0
votes

.NET’s SslStream is always negotiating to the least secure cipher I have. How can I change this?

It should be using the most secure set of algorithms that were in both lists. I find it hard to believe that it isn't, because SslStream is wrapping the SChannel SSPI, and if that were broken then …
1
vote

How can I tell whether I am on x64 or x86 using .NET?

Call IsWow64Process to find out if your 32-bit process is running in WOW64 on a 64-bit operating system. You can call GetNativeSystemInfo to find out exactly what it is: t …
1
vote

Debugging a stack overflow in .NET (I’ve checked the usual suspects, and have moved on to winDBG and co.)

You need some decent symbols for the CLR. Set _NT_SYMBOL_PATH (in WinDBG, use File/Symbol File Path) so that it includes: SRV*C:\WebSymbols*http://msdl.microsoft.com/do …
1
vote

Simplest way to have a configuration file in a Windows Forms C# Application

The default name for a configuration file is [yourexe].exe.config. So notepad.exe will have a configuration file named notepad.exe.config, in the same folder as the program. This is a general confi …
13
votes

Could you explain STA and MTA?

It's all down to how calls to objects are handled, and how much protection they need. COM objects can ask the runtime to protect them against being called by multiple threads at the same time; thos …

1 2 next
15 30 50 per page