This builds a .dll correct? A simple yes or no will suffice.
.... Something tells me you don't understand what a dll even is...
DLL's are basically codes which you may want to use across a number of projects... so you create a resource file, code all the functions you may want to use that are related to it and pack it up.
You then include this dll in any project you wish to use the functions in and call them.
The only difference between a normal winform or console application and a dll.... is that a dll cannot be directly run. It must be a part of a program that itself can be run.
Aka... you could put this as part of a dll or part of your program itself, it makes ZERO difference (same could be said of ANYTHING in programming that is not directly related to the currently running application. Makes no difference if you code it in a dll or the application itself, aside from a re-usability and organization standpoint)
[...]Makes no difference if you code it in a dll or the application itself, aside from a re-usability and organization standpoint)
Loading a dynamic library is less optimized than a static library or the same code in the application. There is a few minors difference too, but else you're right.
My understanding of a .dll was simply that it held information for a project, I know that sometimes to add codes into various projects you need to download some .dlls and add as a reference otherwise you get a ton of errors.
But as you stated that's not always the case, I was talking to somebody on another site who said I needed to have AsmBuilder class for this and I didn't or at least it didn't appear that I had, so I decided to look around the net and found a site that gave an AsmBuilder class and basically what it does is builds a .dll.
Again though that's all new to me and I have never really understood it to much anyway but the code I got worked and it created a basic .dll albeit it more than likely does nothing lol.
I'm currently just looking around Google for various different things that catches my eye and it doesn't necessarily have to be Conquer based such as the VOIP server and client thing as well lol.
I'm also currently looking at this site to help me get a bit of a better understanding I mean for GUI and C# :P
Ok so I have only one error for this and that is
Code:
Error 1 The type or namespace name 'BitSet' could not be found (are you missing a using directive or an assembly reference?)
oh *** asm in .NET. I've just about seen everything now :P
on the subject of DLLs though, DLLs are just more flexible libraries. Really, the only reason to use a DLL over a static library is to be able to switch it out at will without having to rebuild the original executable (say, for a bug fix or something). Otherwise it's more efficient to build it into your exe itself. (also though, some source licenses prevent being able to do that. As in, you must use it as a DLL or not at all)
[Vb.NET] WoW Memory Reading 11/20/2010 - World of Warcraft - 1 Replies Hallo,
Ist es irgendwie möglich mit VB.NET die Memory von WoW auszulesen wie bei C# mit der BlackMagic.dll
Danke m vorraus
Help with memory reading. C++. 06/12/2010 - Aion - 0 Replies Hello people, I'm kinda new to memory reading in c++. Been doing similiar stuff, and done some other stuff like packet hacks etc but anyway, to the issue.
I get weird values from AION when reading. And I'm prolly going about this totally wrong so I'll post you the code and hopefully some kind soul out there will point me in the right direction.
int address = 0xA82424;
int value;
DWORD pid;
if(!GameWindow)
{
C++ Memory Reading 01/02/2010 - C/C++ - 4 Replies huhu
ich wollte jetzt von Autoit auf C++ umsteigen ...
nun weis ich nur leider nicht wie die befehle fürs process id und memory aulesen usw bei c++ sind :)
hat da jmd ne kleine übersicht oder sowas .. wäre toll x)
mfg karl
Help with Reading Memory 01/28/2007 - Conquer Online 2 - 1 Replies Hello,
I've been programming my own Program,
but im now busy with the hardest stuff,
and i'm writing in VB.NET 2005
who can help me with a simple Example to read a memory adress
and this convert to an TEXT label?
the basic is:
VB.Net Memory Reading 11/03/2006 - .NET Languages - 0 Replies Basically I'm doing a course in VB.Net and I'm wondering if theres anyone here who can teach me or show me how to read memory values in my project. My course does not cover this, so I'm stuck with either self-research or asking questions.
If anyone can help then I'd be very grateful.
PS: The target game I'll be testing on is Conquer Online 2