DotNetShoutout - Stories tagged with dll
2
Shouts

ResourceManager with an External Assembly DLL

posted by lenielleniel 540 days, 34 minutes ago
Thursday, December 01, 2011 8:29:41 PM GMT
As a software developer I like to work with everything that is related to software Localization known as L10n. Besides being a developer working defining the architecture that will be adopted in a given project and doing the hard “FUN” work writing the code, I’m also a translator. One thing I've been trying to do recently is to be able to use localized strings that are present in an external assembly [ DLL ] using the ResourceManager object. Read on... (more)
category: Web Dev | clicked: 13 | comment | | source: www.leniel.net
tags: ASP.NET MVC, Programming, C#, ResourceManager, dll, translation, Razor, Helpers, L10n, resx, resource files, Localization, ASP.NET
4
Shouts

How strong name assemblies keep you out of DLL Hell

published 1078 days, 10 hours, 45 minutes ago posted by kirankkirank 1078 days, 14 hours, 57 minutes ago
Friday, June 11, 2010 10:18:48 AM GMT Friday, June 11, 2010 6:06:53 AM GMT
while using Microsoft .NET framework for creating any application we are previously facing same problem with the DLL Hell. it arises a problem while updating a components so it breaks the other application which are depend on it. (more)
category: Web Dev | clicked: 0 | comment | | source: codingstuffsbykiran.blogspot.com
tags: Framework, dll
11
Shouts

60+ .NET libraries every developer should know about.

published 1191 days, 6 hours, 58 minutes ago posted by squiggy22squiggy22 1193 days, 19 minutes ago
Thursday, February 18, 2010 2:05:33 PM GMT Tuesday, February 16, 2010 8:44:19 PM GMT
Every good developer knows never to re-invent the wheel, especially if there is software out there that has been tested by others, and has an established track record. As a developer using the .NET framework I’ve found some of these libraries invaluable, so I’m sharing them for some of the other dev’s out there with a brief outline of how to use. (more)
category: Web Dev | clicked: 0 | comment | | source: blog.webdistortion.com
tags: libraries, dll
2
Shouts

How to plug-in a DLL into a C# project

posted by http://prashantmx.myopenid.com/http://prashantmx.myopenid.com/ 1233 days, 9 hours, 2 minutes ago
Thursday, January 07, 2010 12:01:42 PM GMT
John Grove share a code at MSDN on how can we call DLLs methods dynamically using C# code. The below code can further be modified and a developer can easily extend the functionality of his application to create a application which accepts DLLs as plug-ins. This concept is useful when different users have different requirements in a generalized application like in the case of famous photo editing program Photoshop from Adobe. Here anyone can create a plug-in and hook it up with the host application whi... (more)
category: Architecture | clicked: 0 | comment | | source: midnightprogrammer.net
tags: Plug-In, dll, Reflection
7
Shouts

Set the default printer for printing programatically

published 1231 days, 8 hours, 34 minutes ago posted by http://prashantmx.myopenid.com/http://prashantmx.myopenid.com/ 1234 days, 10 hours, 52 minutes ago
Saturday, January 09, 2010 12:29:34 PM GMT Wednesday, January 06, 2010 10:11:12 AM GMT
You need to print the document but you don't want to go to control panel or printer and faxes options and just want to get it changed automatically. You can even set the shared local network printer with this code. Just with the code you can override the system settings and change the default printer for your system. You need to use the namespace so in order to use the DLLImport attribute.using System.Runtime.Interopservices; //Set default printer to the one available with your system or network. [Dl... (more)
category: How To | clicked: 3 | comment | | source: www.midnightprogrammer.net
tags: printing, dll