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.
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
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.
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]()
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!

Dll files should work for any language. I would say yes.
Can someone plz make a app for this and source cuz it doesnt work for me.
Try using this to convert the code.
http://www.developerfusion.com/tools/co ... arp-to-vb/
http://www.developerfusion.com/tools/co ... arp-to-vb/
I know but it doesnt work for me.I get 2 errors.
EDIT:12 errors.
... fight; fight;
EDIT:12 errors.
... fight; fight;
Could you take a screenshot, or list all the errors? I can't help much if i dont know what is causing the problem.
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 =|
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 =|
Copyright Information
Copyright © Codenstuff.com 2020 - 2023