Reactor

Stories kicked by Reactor

Create Portable Applications With Ease(tc-europa.com)

submitted by romanbergromanberg(105) 3 years, 7 months ago

BoxedApp SDK 2.0, a DLL library from Softanics enables developers to take advantage of the next generation technology - application virtualization to create a portable application with zero installation that relies on the virtual environment to run. read more...

2 comments |category: |Views: 389

tags: another

Adding a zip file utility to SQL server as a CLR Function(sqlblog.net)

submitted by thaisoldthaisold(160) 3 years, 10 months ago

How to zip files using a CLR function for SQL Server. read more...

add a comment |category: |Views: 32

tags: another

WPF Binding Converter Best Practices (dev102.com)

submitted by razamitrazamit(4566) 3 years, 10 months ago

As you all remember in my article about Custom WPF Context Menu I mentioned that my WPF Binding Converter was a singleton, and I promised to tell you why, so here comes the 3 ways I know of using WPF Binding Converters. We will start from the worst (in my opinion) and move on the the best. read more...

add a comment |category: |Views: 527

tags: another

volatile and MemoryBarrier()...(blogs.msdn.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 10 months ago

That part I knew… what we news to me is there is a better way to do volatile, and that is with an explicitly memory barrier before accessing the data member.. We have a an API for that: System.Threading.Thread.MemoryBarrier(). This is more efficient than using volatile because a volatile field requires all accesses to be barriers and this effects some performance optimizations. read more...

add a comment |category: |Views: 27

tags: another

Updated version of Postback Ritalin - ASP.NET AJAX Server Control(encosia.com)

submitted by shashisatyashashisatya(115) 3 years, 10 months ago

PostBack Ritalin is an ASP.NET AJAX server control to help simplify the common task of disabling buttons and imagebuttons during partial postbacks. read more...

2 comments |category: |Views: 118

tags: another

Episode 6: Talking Domain-Driven Design with David Laribee - Part 1(deepfriedbytes.com)

submitted by cwoodruffcwoodruff(780) 3 years, 10 months ago

Domain-driven design (DDD) is an approach to the design of software, based on two premises. For most software projects, the primary focus should be on the domain and domain logic (as opposed to being the particular technology used to implement the system) and complex domain designs should be based on a model. David Laribee sat down with the hosts Keith and Woody to discuss this growing design practice and also discuss how it could be used with the .NET platform. read more...

add a comment |category: |Views: 169

tags: another

Managed C++: Embedding Microsoft Visual C++ Redistributable(boxedapp.com)

submitted by _UE__UE_(230) 3 years, 10 months ago

If you use a DLL written in Managed C++, you should a few DLLs from the Microsoft Visual C++ Redistributable package installed. There are no usual ways to link these libraries statically (due to C++ / CLI restrictions). But there a way to include these DLLs into your application, see how in this article. read more...

4 comments |category: |Views: 98

tags: another

Use ActiveX components without registration(boxedapp.com)

submitted by FlasherFlasher(205) 3 years, 10 months ago

The article describes how to use ActiveXs without registration. The method is also usable for .net applications, many of them still use many Activexs ;) The concept is interesting: all changes made by ActiveX's registration saves in virtual registry only. read more...

add a comment |category: |Views: 343

tags: another

LINQ & Lambda, Part 3: Html Agility Pack to "LINQ to XML" Converter(vijay.screamingpens.com)

submitted by CVertexCVertex(325) 4 years ago

In this part of the LINQ & Lambda series a pseudo LINQ to HTML parser is created with the HTML Agility Pack and extension method magic. read more...

add a comment |category: |Views: 331

tags: another