Search Results

1
vote

SQL Server Service Broker Issue & Tutorials

Hi William In answer to your first question, hopefully, you'll see something in the sys.transmission_queue system view. See …
2
votes

Difference of two ‘uint’

This is just the default - you can change the compilation settings to enable runtime arithetic overflow checks. If you turn that on, exceptions will be thrown as you are expecting. Alternatively, y …
0
votes

What’s a good way of doing string templating in .NET?

There's some nice background on this, with an implementation, on Phil Haack's blog: http://haacked.com/archiv …
1
vote

TripleDES: Specified key is a known weak key for ‘TripleDES’ and cannot be used.

Unfortunately, the behaviour can't be overridden. …
2
votes

How do I configure base class libraries in my app.config file?

One useful resource is the machine-level configuration files. The actual files are bare-bones, but there are ".comments" files alongside them that give fairly detailed examples of what can be achie …
3
votes

How do I snoop on another processes memory from .Net?

You'll have to use the win32 ReadProcessMemory API - there's nothing built-in. See here …
0
votes

Why is the User information stored in two different tables in ASP.NET’s default Membership Provider?

Some of the other providers in ASP.NET (other than the Membership provider) also store user-specific information. e.g. Profile. More information about this: Several of the shipped A …
0
votes

Winforms MVP Grid Events Problem

The key is getting all that business logic into the presenter where it's testable. The view should call the presenter to perform the business logic, passing the information needed (e.g. the …
0
votes

Location of a Windows service *not* in my project

Another option, without the interop, would be a WMI lookup (or registry - bit hacky!). Here's a quick example, based on …
1
vote

Exception handling around the rollback of a SqlTransaction

I agree with Marc that the problem is likely to be within the stored procedures themselves. There's a quite interesting article outlining a few issues …
4
votes

How does Returning a Struct as an Interface work?

It will be boxed on the return t; statement. At this point, the value is copied from the stack to the heap. …