Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > C-Sharp > Assembly


Search:
What's New - What's Hot
Exporting C++ classes without using MFC extension DLL  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: Tanzim Husain      Rating:  
Read Reviews | Write Review |  Your Rating: 

DLLs are a great way of sharing common pieces of code data between applications. When it comes down to exporting C++ classes from DLLs most of us go for MFC extension DLLs where we can use the AFX_EXT_CLASS macro to export an entire class. Unfortunately, MFC is no lean and mean class architecture, which means that distributing MFC extension DLLs mean that you have to include the big MFC runtime not to mention the fact that your DLL can only be linked to MFC applications exclusively. What's the s...

How To Update Assembly Version Number Automatically  Version: 0.00     Price: $0.00  
Total Hits: 105  |  Today: 0Author: Sergiy Korzh      Rating:  
Read Reviews | Write Review |  Your Rating: 

In the other hand, I would like to specify those numbers automatically during the build process. Moreover it would be great to have an ability to change the whole version number or just increase the latest part of it (build number). Of course, you may say that such an operation can simply be done manually. It is true for one or two assemblies. But our usual project contains about 10-15 different assemblies and we would like to have a version number in all of them synchronized....

Viewing Assembly Permissions  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: Chris Rausch      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article I will show you how you can view the Code Groups that an assembly belongs to and what permissions belong to the assembly. I will demonstrate the Caspol utility supplied with the .NET SDK....

Turning local paths from an HTML code in external accessible paths  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: McPhantom      Rating:  
Read Reviews | Write Review |  Your Rating: 

Let's say you have a project where you coded some stuff to get all links (href) from a webpage (html) but the links are all local paths like /pages/download.php...

Multilingual Applications in .NET  Version: 0.00     Price: $0.00  
Total Hits: 3  |  Today: 0Author: pradeep.kellangere      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article explains the basic understanding on different methods of developing multilingual applications in .NET. Here emphasis is given on handling multiple languages using resource files. This also explains the necessary settings to be made in the Windows operating system and SQL Server database to support the multilingual capabilities....

Assemblies : The Ins and Out : Part III  Version: 0.00     Price: $0.00  
Total Hits: 0  |  Today: 0Author: Chris Rausch      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article is the third part of a three part series of articles covering the .Net assemblies. In Part 1, I covered what exactly an assembly is, and what an assembly contains. Part 2 of the series I discussed both Private and Shared assemblies and how to create a "Shared Assembly". In part 2 I briefly mentioned some of the utilities available for working with assemblies. In this part I will discuss in more detail than Part 2, the available utilities for manipulating assemblies....

Dynamic building and execution of assembly using CodeDome & Reflection  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Pradeep Tiwari      Rating:  
Read Reviews | Write Review |  Your Rating: 

We have an assembly running, now at run time we want to enter some code, compile it, execute it and apart from that access code and data member from the main or other referenced assembly....

Modest Introduction to IL Assembly Language  Version: 0.00     Price: $0.00  
Total Hits: 0  |  Today: 0Author: Filip Bulovic      Rating:  
Read Reviews | Write Review |  Your Rating: 

To compile and run the code you must have installed Microsoft .NET Framework Beta 2 available for download from http://msdn.Microsoft.com. Since I received copy of Visual Studio .NET Beta 2 and did not manage to find "ILAssemblyLanguageProgrammersReference.doc" which was included in beta 1 I decided to share my experience with other assembly enthusiasts. Documents for somebody interested in intermediate language could be find in : "C:\ProgramFiles\Microsoft.NET\FrameworkSDK\Tool Developers Guid...

Delay Loading DLLs  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: ETA      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is a easy to use library which let you use different compilers, to optimize-compile your DLL for different processors....

Dlls are Simple. Part 1  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Mahmoud Komeily      Rating:  
Read Reviews | Write Review |  Your Rating: 

Some programmers think DLLs are complicated but it's true they are like EXEs. However I have seen programmers who can't build DLL. There are multiple way to create a DLL. For usage with exe, easiest way is "Implicit linking". In this way, we require .LIB file produced by DevStudio. Below, we create a DLL and then use it with exe. Inside DLL, we calculate (multiply) two numbers that has been send from the exe. Practically, exe is "Sender/Receiver" and DLL is "Calculator"....

Delay Loading a DLL  Version: 0.00     Price: $0.00  
Total Hits: 5  |  Today: 0Author: Sachin R Sangoi      Rating:  
Read Reviews | Write Review |  Your Rating: 

The code snippet shown in this article is used to delay load a DLL, i.e., DLL is implicitly linked but not actually loaded until your code attempts to reference a symbol contained within the DLL. If your application uses several DLLs, its initialization time might be slow because the loader maps all of the required DLLs into the process' address space and there is every possibility that even a single function from one of these DLLs is not called, so a better way for a loading a DLL which is rare...

Introduction In DLLs Creation Using MASM  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Nathan Campos      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article, I will talk about the creation of a DLL using Assembly (MASM) and the creation of a program that invokes that sample DLL....

Using classes exported from a DLL using LoadLibrary  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: Anup. V      Rating:  
Read Reviews | Write Review |  Your Rating: 

I have seen quite a lot of code explaining how to use classes exported from a DLL in an application. However, all these describe the usage of the exported classes by linking implicitly to the DLL. Refreshing our DLL concepts, there are two ways for an application to use a function written in a DLL. The first way is to have your application's source code simply reference symbols contained in the DLL. This causes the loader to implicitly load (and link) the required DLL when the application is inv...

MATLAB Generic DLL  Version: 0.00     Price: $0.00  
Total Hits: 0  |  Today: 0Author: A. Riazi      Rating:  
Read Reviews | Write Review |  Your Rating: 

A shared library is a collection of functions that are available for use by one or more applications running on a system. On Windows operating systems, the library is compiled into a dynamic link library (.dll) file. At run-time, the library is loaded into memory and made accessible to all applications....

Loading Assemblies in Separate Directories Into a New AppDomain  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Sacha Barber      Rating:  
Read Reviews | Write Review |  Your Rating: 

As some of you may know, I have been working on a code generator for my Cinch MVVM framework, which I am pleased to say I am nearly done with. The last stumbling block has been that I need to extract a bunch of Namespaces from Assemblies that the main code referenced, which I want to do by the use of Reflection which is very easy. But I also wanted the Assemblies that I would need to examine loaded into a new AppDomain so that I could Unload the newly created AppDomain when I am finished Reflect...

Decode /FlateDecode PDF Stream To Plain Text using ZLib Inflate Function in VB  Version: 0.00     Price: $0.00  
Total Hits: 49  |  Today: 0Author: VBboy136      Rating:  
Read Reviews | Write Review |  Your Rating: 

This example shows how to use the ZLib Inflate & Deflate function in VB6. This example illustrates how to decode a PDF file to extract plain text....

LateLoad DLL Wrapper  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Jason De Arte      Rating:  
Read Reviews | Write Review |  Your Rating: 

LateLoad is a series of macros for managing LoadLibrary / GetProcAddress calls by creating a class that contains DLL exported functions as member functions. The attached sample uses LoadLoad to access the GradientFill() function exported from MSIMG32.DLL. This is not a sample on how to use GradientFill(), but I've found that people respond better to arbitrary demos if they either have blinking lights, pretty colors or are interactive in some way. Since this has 2 out of 3, maybe it will hold eve...

High Scores in Solitaire: A More Advanced Approach  Version: 0.00     Price: $0.00  
Total Hits: 4  |  Today: 0Author: AlexAbramov      Rating:  
Read Reviews | Write Review |  Your Rating: 

A while ago, I was searching for something that would add high score functionality to Windows Solitaire. I even happened to come across an article on this very site. However, none had the functionality that I desired. What I wanted was something that would integrate with the actual Solitaire game. There would be no need to run the Solitaire game through another process, or have anything that would require the user to do anything. After a few minutes of searching, I realized that it was hopeless ...

Retrieving Assembly Attributes  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: Christian Rodemeyer      Rating:  
Read Reviews | Write Review |  Your Rating: 

AssemblyAttributes is a cute little helper class that is useful for almost every .NET/Silverlight application that displays some information about itself (think “About Box”). It retrieves the values of the following assembly attributes in an easy and consistent manner:

* Title
* Product
* Copyright
* Company...

MiniLogger  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: Dane-Garrin Balia      Rating:  
Read Reviews | Write Review |  Your Rating: 

Quite simplistically, it is a lightweight logging API. If this is what you are looking for, read ON.

Yes there are tons of Logging tools out there and well most people either use one of the freely available ones (NLog, Log4Net, etc.) or write something ad-hoc for themselves; which is most times project specific as opposed to extrapolating the side-effects of Object-Orientated Programming’s (OOP) Model by having a re-usable CLASS....


1  2  3  4  5  6  7  8  9  10  Next >> 


Disclaimer - Privacy
© 2002-2012 DevASP.net