| View previous topic :: View next topic |
| Author |
Message |
The Hitman Newbie cheater
Reputation: 0
Joined: 25 Apr 2008 Posts: 15
|
Posted: Mon May 12, 2008 5:55 pm Post subject: HOW DO I MAKE A .DLL |
|
|
| I need to know.. I herd you could do it in vb6 but i have no clue how...i opend some .dll by making them .txt but i dont know how to read squares
|
|
| Back to top |
|
 |
tjake Grandmaster Cheater Supreme
Reputation: 0
Joined: 05 Feb 2007 Posts: 1927 Location: At Your Bed Sleeping
|
Posted: Mon May 12, 2008 6:11 pm Post subject: |
|
|
learn first then u'll know what to do.
i'm still on processing learning.
|
|
| Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Mon May 12, 2008 8:33 pm Post subject: |
|
|
I dont think VB can MAKE .dlls
_________________
|
|
| Back to top |
|
 |
oib111 I post too much
Reputation: 0
Joined: 02 Apr 2007 Posts: 2947 Location: you wanna know why?
|
Posted: Mon May 12, 2008 9:01 pm Post subject: |
|
|
I don't think so. You can learn how to make dlls in other languages and call the functions from the dlls.
_________________
| 8D wrote: |
cigs dont make people high, which weed does, which causes them to do bad stuff. like killing |
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8588 Location: 127.0.0.1
|
Posted: Mon May 12, 2008 10:14 pm Post subject: |
|
|
VB6 can. By default, it can only make ActiveX DLLs, but with a hacked linker you can compile standard Win32 DLLs.
As for reading a DLL you can't just open it in notepad, it is compiled into machine code, which you cannot read like that. You can disassemble the DLL into machine code, but, that is as far as you will get it.
Article on how to create standard Win32 DLLs with VB6:
http://www.windowsdevcenter.com/pub/a/windows/2005/04/26/create_dll.html
_________________
- Retired. |
|
| Back to top |
|
 |
oib111 I post too much
Reputation: 0
Joined: 02 Apr 2007 Posts: 2947 Location: you wanna know why?
|
Posted: Mon May 12, 2008 10:38 pm Post subject: |
|
|
| Wiccaan wrote: | VB6 can. By default, it can only make ActiveX DLLs, but with a hacked linker you can compile standard Win32 DLLs.
As for reading a DLL you can't just open it in notepad, it is compiled into machine code, which you cannot read like that. You can disassemble the DLL into machine code, but, that is as far as you will get it.
Article on how to create standard Win32 DLLs with VB6:
http://www.windowsdevcenter.com/pub/a/windows/2005/04/26/create_dll.html |
Anything like that for C++?
_________________
| 8D wrote: |
cigs dont make people high, which weed does, which causes them to do bad stuff. like killing |
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8588 Location: 127.0.0.1
|
Posted: Mon May 12, 2008 10:40 pm Post subject: |
|
|
C++ can already make standard win32 DLLs by default. You don't need to modify anything to create them.
_________________
- Retired. |
|
| Back to top |
|
 |
the_undead Expert Cheater
Reputation: 1
Joined: 12 Nov 2006 Posts: 235 Location: Johannesburg, South Africa
|
Posted: Tue May 13, 2008 4:10 am Post subject: |
|
|
Creating DLL's is just like creating any other application.
Theres nothing special to them.
Just look up on how to export functions.
_________________
|
|
| Back to top |
|
 |
|