Conversion.dll - C#
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.
2 posts
Page 1 of 1
This is a Class Library(.dll) that currently has functions for hex to string, string to hex.
USE(C#):
* hex to text *
* hex to text *
* hex to text *

USE(C#):
* hex to text *
Code: Select all
* text to hex *
Conversion.Conversion c = new Conversion.Conversion();
string a = c.hexToText(textBox2.Text);
textBox1.Text = a;
Code: Select all
USE(VB.NET): Conversion.Conversion c = new Conversion.Conversion();
string a = c.textToHex(textBox1.Text);
textBox2.Text = a;
* hex to text *
Code: Select all
* text to hex *
Dim c As New Conversion.Conversion()
Dim a As String = c.hexToText(textBox2.Text)
textBox1.Text = a
Code: Select all
USE(C++):Dim c As New Conversion.Conversion()
Dim a As String = c.textToHex(textBox1.Text)
textBox2.Text = a
* hex to text *
Code: Select all
* text to hex *
Conversion->Conversion c = new Conversion->Conversion();
string a = c->hexToText(textBox2->Text);
textBox1->Text = a;
Code: Select all
Attached below...2 credits. Conversion->Conversion c = new Conversion->Conversion();
string a = c->textToHex(textBox1->Text);
textBox2->Text = a;
You do not have the required permissions to view the files attached to this post.
Last edited by Zulf on Mon Dec 13, 2010 1:32 am, edited 2 times in total.
VB.NET
Hex to Text:
Dim c As New Conversion.Conversion()
Dim a As String = c.hexToText(textBox2.Text)
textBox1.Text = a
Text to Hex:
Dim c As New Conversion.Conversion()
Dim a As String = c.textToHex(textBox1.Text)
textBox2.Text = a
Hex to Text:
Dim c As New Conversion.Conversion()
Dim a As String = c.hexToText(textBox2.Text)
textBox1.Text = a
Text to Hex:
Dim c As New Conversion.Conversion()
Dim a As String = c.textToHex(textBox1.Text)
textBox2.Text = a
2 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023