Re: Hex Editor DLL
Posted: Thu Dec 16, 2010 12:06 am
I don't actually have the source. Follow these steps:
Create a new project
Go to Project => add reference.
Go to the browse tab, and look for the dll file, and add it as a reference.
Go back to the designer window.
Go to View => Code
Above everything, Put "Import Agust1337.Controls.HexEditor"
Try using this code:
Create a new project
Go to Project => add reference.
Go to the browse tab, and look for the dll file, and add it as a reference.
Go back to the designer window.
Go to View => Code
Above everything, Put "Import Agust1337.Controls.HexEditor"
Try using this code:
Code: Select all
Dim _aData As Byte() = New Byte(4095)
Sub New()
InitializeComponent()
txtHex.InitializeComponent()
txtAsc.InitializeComponent()
txtHex.LinkDisplay(txtAsc)
txtHex.LoadData(_aData)
End Sub