Page 1 of 3

Hex Editor DLL

Posted: Wed Dec 15, 2010 3:32 pm
by 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..

Re: Hex Editor DLL

Posted: Wed Dec 15, 2010 5:31 pm
by MrAksel
Exactly what does this do?

Re: Hex Editor DLL

Posted: Wed Dec 15, 2010 5:35 pm
by mandai
Is this for displaying a hex string from a byte array?

Re: Hex Editor DLL

Posted: Wed Dec 15, 2010 9:44 pm
by code it
Does this work with VB.NET because I SERIOUSLY NEED IT!!!

Re: Hex Editor DLL

Posted: Wed Dec 15, 2010 9:49 pm
by Cheatmasterbw
Dll files should work for any language. I would say yes.

Re: Hex Editor DLL

Posted: Wed Dec 15, 2010 10:26 pm
by code it
Can someone plz make a app for this and source cuz it doesnt work for me.

Re: Hex Editor DLL

Posted: Wed Dec 15, 2010 10:35 pm
by Cheatmasterbw
Try using this to convert the code.
http://www.developerfusion.com/tools/co ... arp-to-vb/

Re: Hex Editor DLL

Posted: Wed Dec 15, 2010 10:44 pm
by code it
I know but it doesnt work for me.I get 2 errors.

EDIT:12 errors.
... fight; fight;

Re: Hex Editor DLL

Posted: Wed Dec 15, 2010 11:47 pm
by 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.

Re: Hex Editor DLL

Posted: Wed Dec 15, 2010 11:55 pm
by 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 =|