|
|
|
|
|
Total Hits: 282 | Today: 0
|
Author: VBboy136
|
Rating:
|
|

This example shows how to use the ZLib Inflate & Deflate function in VB6. This is example illustrates how to decode a PDF file to extract the plain text. This is similar to the cpp article "http://www.codeproject.com/KB/cpp/ExtractPDFText.aspx" but this project does not remove any internal PDF text. i leave processing up to you. I might update this project later....
|
|
|
|
Total Hits: 306 | Today: 0
|
Author: Mike Gunderloy
|
Rating:
|
|

Microsoft .NET provides several ways to think of your code as more than just a bunch of disconnected lines. As a Visual Basic programmer, you're already familiar with the concept of a class, a section of code that defines an object and its behavior. But two of the higher-level groupings may be unfamiliar to you: 1.An assembly provides a fundamental unit of physical code grouping. 2.A namespace provides a fundamental unit of logical code grouping. As you'll see in this document, you can u...
|
|
|
|
Total Hits: 379 | Today: 0
|
Author: Mihir Pathak
|
Rating:
|
|

This article allows you to read the assembly attributes information using .NET. The information store in AssemblyInfo files like Title, Description, copyright, Trade mark can be read using reflection and assembly namespace....
|
|
|
|
Total Hits: 185 | Today: 0
|
Author: r@hu!.
|
Rating:
|
|

I faced this issue today. I wanted to call a function written in C# from my VB.NET code, but I found out that the coder of the library had not followed Microsoft guidelines for interoperability and had used same name for two functions differing only by case having the same signature. I didn't have access to the C# code, so was helpless as VB.NET does not allow me to use any of these functions....
|
|
|
|
Total Hits: 114 | Today: 0
|
Author: Alan Dean
|
Rating:
|
|

I have been developing shrinkwrapped software products for most of my professional career. Therefore, I have an abiding respect for internationalization and localization. In fact, it is something of a running joke to warn new developers who join not to kick me off on the subject. Of course, they will hear from me soon enough....
Shrinkwrapped products can end up in a bewildering set of environments and countries. Simply saying that your product will only run on {insert OS} with {insert la...
|
|
|
|
Total Hits: 277 | Today: 0
|
Author: Bill Hatfield
|
Rating:
|
|

Deployment issues often get swept aside when deadlines overtake you and getting it out the door is all that matters. But, if maintaining the code is also a consideration, you'd do well to take note of the following assembly deployment best practices....
|
|
|
|
Total Hits: 380 | Today: 0
|
Author: Nayan Patel
|
Rating:
|
|

An assembly is the primary building block of a .NET Framework application. It is a collection of functionality that is built, versioned, and deployed as a single implementation unit (as one or more files). All managed types and resources are marked either as accessible only within their implementation unit or as accessible by code outside that unit. There really isn’t VB6 equivalent of an assembly but VB6 exe/dll comes closer to the concept of Assembly but again Assembly can be made of multiple ...
|
|
|
|
Total Hits: 241 | Today: 0
|
Author: Ted Pattison
|
Rating:
|
|

This month's installment of Basic Instincts will begin a multi-part series focused on working with assemblies. There is quite a bit you need to know about how assemblies are built, deployed, and versioned. This month I will address several essential details about how to build an assembly with the exact name you want. In subsequent months, I'll discuss your options for deploying assemblies on a production machine and revising assemblies that have already been put into production....
|
|
|
|
Total Hits: 326 | Today: 0
|
Author: Sheakar Krishna
|
Rating:
|
|

This article discusses how to build assemblies and secure them from being tampered. This article will brief you from the basics of the assembly till the signing of the assembly and preventing it from tampering....
|
|
|
|
Total Hits: 53 | Today: 0
|
Author: authors.aspalliance
|
Rating:
|
|

Today's topic will be discussing again the assemblies, but this time I will be giving you an idea of how multiple or (in other words what might be also called as) sub namespace assemblies are implemented. The .NET framework consists of many assemblies. In our ASP .NET projects we also use many different type of assemblies, depending upon the projects or the solutions requirements. Some of the assemblies have Namespaces which differ at a certain level, for example; you would have included the Sys...
|
|
|
|
Total Hits: 76 | Today: 0
|
Author: Microsoft Corporation
|
Rating:
|
|

The Windows Software Development Kit (SDK) provides several ways to sign an assembly with a strong name: * Using the Assembly Linker (Al.exe) provided by the Windows SDK. * Using assembly attributes to insert the strong name information in your code. You can use either the AssemblyKeyFileAttribute or the AssemblyKeyNameAttribute, depending on where the key file to be used is located....
|
|
|
|
Total Hits: 140 | Today: 0
|
Author: rj45.
|
Rating:
|
|

First off, get the assembly from type integer. This should get the mscorlib.dll. (Main .NET assembly)....
|
|
|
|
Total Hits: 76 | Today: 0
|
Author: Fons Sonnemans
|
Rating:
|
|

During development, you can use the output methods of the Debug class to display messages in the Output window of the Visual Studio integrated development environment (IDE)....
|
|
|
|
Total Hits: 432 | Today: 0
|
Author: Sheldon Fernandez and Alim Somani
|
Rating:
|
|

Assemblies are the new way components and executables are packaged in the .NET Framework. The EXEs and DLLs created by VB.NET are assemblies. Assemblies contain both IL code and metadata. Metadata describes the types an assembly exposes, the assembly's dependencies, and the assembly's versioning information. The CLR uses an assembly's metadata to ensure that its methods are called in a type-safe manner and that an assembly runs against its proper resources....
|
|
|
|
Total Hits: 20 | Today: 0
|
Author: Shekar Krishna
|
Rating:
|
|

Shekar's article is a brief introduction into the world of Assemblies, using VB.Net, and their core security features.
This article discusses how to build assemblies and secure them from being tampered with. Every assembly built using the .NET compiler has a four-part name consisting of the following elements:
1. Friendly name 2. Version number 3. Culture setting 4. Public key or public key token...
|
|
|
|
Total Hits: 29 | Today: 0
|
Author: Twaitsey
|
Rating:
|
|

This handy little DLL uses two files stored on an HTTP/HTTPS server to update your application. This DLL uses LudioSoft.ConfigurationFile.dll I found on this site! Thanks to the author for that code! Probably the most useful DLL I have found so far on this site: Link to the article. The DLL comes either as a single package, along with the LudioSoft DLL, or in with a program that can be used to create the update files....
|
|
|
|
Total Hits: 85 | Today: 0
|
Author: Mark Killmer
|
Rating:
|
|

When working in a team environment, factors such as limited license keys, security, or network access may hinder the creation of a test environment. In a recent project, one of my requirements was to interface with an existing .NET component. The existing component could not be duplicated in my off-site office environment, and existing security policies would not allow network access. Coding and testing the interface was looking very difficult....
|
|
|
|
Total Hits: 19 | Today: 0
|
Author: Sebastien LEBRETON
|
Rating:
|
|

Reflector is a great tool for doing an in-depth examination of various types of assemblies and also for disassembling IL code towards a supported .NET language. However, Reflector is unable to modify either the structure or the IL code of assemblies. Reflexil allows such modifications by using the powerful Mono.Cecil library written by Jb EVAIN. Reflexil runs as a plug-in and is directed especially towards IL code handling. It accomplishes this by proposing a complete instruction editor and by a...
|
|
|
|
Total Hits: 98 | Today: 0
|
Author: rj45
|
Rating:
|
|

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below....
|
|
|
|
Total Hits: 73 | Today: 0
|
Author: r@hu!
|
Rating:
|
|

I faced this issue today. I wanted to call a function written in C# from my VB.NET code, but I found out that the coder of the library had not followed Microsoft guidelines for interoperability and had used same name for two functions differing only by case having the same signature. I didn't have access to the C# code, so was helpless as VB.NET does not allow me to use any of these functions. It gives a compile time error:...
|
|
|
|
|
|