|
|
|
|
|
| | Total Hits: 1 | Today: 0 | Author: Tanzim Husain | 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... |
| | Total Hits: 105 | Today: 0 | Author: Sergiy Korzh | 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.... |
| | Total Hits: 1 | Today: 0 | Author: Chris Rausch | 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.... |
| | Total Hits: 1 | Today: 0 | Author: McPhantom | 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... |
| | Total Hits: 3 | Today: 0 | Author: pradeep.kellangere | 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.... |
| | Total Hits: 0 | Today: 0 | Author: Chris Rausch | 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.... |
| | Total Hits: 2 | Today: 0 | Author: Pradeep Tiwari | 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.... |
| | Total Hits: 0 | Today: 0 | Author: Filip Bulovic | 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... |
| | Total Hits: 1 | Today: 0 | Author: ETA | Rating:  |
| |  This is a easy to use library which let you use different compilers, to optimize-compile your DLL for different processors.... |
| | Total Hits: 2 | Today: 0 | Author: Mahmoud Komeily | 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".... |
| | Total Hits: 5 | Today: 0 | Author: Sachin R Sangoi | 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... |
| | Total Hits: 2 | Today: 0 | Author: Nathan Campos | 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.... |
| | Total Hits: 1 | Today: 0 | Author: Anup. V | 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... |
| | Total Hits: 0 | Today: 0 | Author: A. Riazi | 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.... |
| | Total Hits: 2 | Today: 0 | Author: Sacha Barber | 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... |
| | Total Hits: 49 | Today: 0 | Author: VBboy136 | 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.... |
| | Total Hits: 2 | Today: 0 | Author: Jason De Arte | 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... |
| | Total Hits: 4 | Today: 0 | Author: AlexAbramov | 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 ... |
| | Total Hits: 1 | Today: 0 | Author: Christian Rodemeyer | 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... |
| | Total Hits: 1 | Today: 0 | Author: Dane-Garrin Balia | 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.... |
|
|
|
|
|
|
|
|
|
|
|
|
|