Hex Editor DLL

Please post all your completed software applications in here. This is for full software which you have created and wish to release and share with everyone.
22 posts Page 1 of 3
Contributors
User avatar
Agust1337
Coding God
Coding God
Posts: 2456
Joined: Fri Feb 19, 2010 8:18 pm

Hex Editor DLL
Agust1337
Hello I have been making this Dll for 1 day(Started Yesterday) and I have finally completed it now :D
And here I have some sample in C#, but you might want to convert it to vb if your a VB Programmer, but anyway!
Add one: HexEditBox & one LinkedBox,
and name them something, then you write :
(HexEditBox will be txtHex, & LinkedBox will be txtAsc)
C#:
Code: Select all
using Agust1337.Controls.HexEditor;
namespace someapp
{
    public partial class Form1 : Form
    {
        private byte[] _aData = new byte[4096];
        public Form1()
        {
            InitializeComponent();
            txtHex.InitializeComponent();
            txtAsc.InitializeComponent();
            txtHex.LinkDisplay(txtAsc);
            txtHex.LoadData(_aData);
        }
    }
}
VB.net
Code: Select all
Imports Agust1337.Controls.HexEditor
Public Class someapp
    Private _aData As Byte() = New Byte(4095) {}
   
 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        txtHex.InitializeComponent()
        txtAsc.InitializeComponent()
        txtHex.LinkDisplay(txtAsc)
        txtHex.LoadData(_aData)
    End Sub
End Class
AND I DON'T CARE IF THIS PROJECT EXISTS SOMEWHERE ELSE BECAUSE I DID NOT COPY AND PASTE, IF YOU THINK I HAVE..
You do not have the required permissions to view the files attached to this post.
Last edited by Agust1337 on Thu Dec 16, 2010 10:00 pm, edited 1 time in total.
Top-notch casual Dating
User avatar
MrAksel
C# Coder
C# Coder
Posts: 1758
Joined: Fri Mar 26, 2010 12:27 pm

Re: Hex Editor DLL
MrAksel
Exactly what does this do?
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;


Over 30 projects with source code!
Please give reputation to helpful members!

Image
Image
User avatar
mandai
Coding God
Coding God
Posts: 2585
Joined: Mon Apr 26, 2010 6:51 pm

Re: Hex Editor DLL
mandai
Is this for displaying a hex string from a byte array?
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

Re: Hex Editor DLL
code it
Does this work with VB.NET because I SERIOUSLY NEED IT!!!
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

Re: Hex Editor DLL
Cheatmasterbw
Dll files should work for any language. I would say yes.
http://www.megaapps.tk/
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

Re: Hex Editor DLL
code it
Can someone plz make a app for this and source cuz it doesnt work for me.
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

Re: Hex Editor DLL
Cheatmasterbw
Try using this to convert the code.
http://www.developerfusion.com/tools/co ... arp-to-vb/
http://www.megaapps.tk/
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

Re: Hex Editor DLL
code it
I know but it doesnt work for me.I get 2 errors.

EDIT:12 errors.
... fight; fight;
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

Re: Hex Editor DLL
Cheatmasterbw
Could you take a screenshot, or list all the errors? I can't help much if i dont know what is causing the problem.
http://www.megaapps.tk/
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

Re: Hex Editor DLL
code it
Well can you just give me the source.
By the way the controls won`t show up etheir even though i ran the app and added the dll.
So please give me the source =|
22 posts Page 1 of 3
Return to “Full Software”