Hex Editor DLL
Posted: Wed Dec 15, 2010 3:32 pm
Hello I have been making this Dll for 1 day(Started Yesterday) and I have finally completed it now 
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#:

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
VB.net
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);
}
}
}
Code: Select all
AND I DON'T CARE IF THIS PROJECT EXISTS SOMEWHERE ELSE BECAUSE I DID NOT COPY AND PASTE, IF YOU THINK I HAVE..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