Results 1 to 2 of 2

Thread: Dll

  1. #1

    Thread Starter
    Hyperactive Member Mosabama's Avatar
    Join Date
    Aug 2004
    Location
    Mars
    Posts
    306

    Dll

    Hi every body ...

    since 2 years ago I have been looking for a tutorial about DLLs...
    I dont mean how can I create a DLL ...
    whay I mean is "The DLL structure" how it is emplimented technicaly ... and to what extend its secure ...

    and I mean by secure here that no one can decompile it .. no one can see the code .....

    What is the interface part ... or the header .. .. and what does it have to do with API and COM or even .NET ...
    My software never has bugs. It just develops random features.
    I RATE, YOU RATE!!!

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Dll

    A DLL is exactly like an EXE except it doesn't have an entry point. In fact, you can change the extension of an EXE to DLL and then other executables can use its public types just like any other DLL. The compiled entry point is just ignored. That's the case with .NET assemblies anyway. I'm not sure if non-.NET execuatbles are the same but I'd imagine so.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width