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
Contributors
User avatar
Zulf
Serious Programmer
Serious Programmer
Posts: 441
Joined: Fri Jun 11, 2010 7:46 am

Conversion.dll - C#
Zulf
This is a Class Library(.dll) that currently has functions for hex to string, string to hex.:D

USE(C#):
* hex to text *
Code: Select all
            Conversion.Conversion c = new Conversion.Conversion();
            string a = c.hexToText(textBox2.Text);
            textBox1.Text = a;
* text to hex *
Code: Select all
            Conversion.Conversion c = new Conversion.Conversion();
            string a = c.textToHex(textBox1.Text);
            textBox2.Text = a;
USE(VB.NET):
* hex to text *
Code: Select all
Dim c As New Conversion.Conversion()
Dim a As String = c.hexToText(textBox2.Text)
textBox1.Text = a
* text to hex *
Code: Select all
Dim c As New Conversion.Conversion()
Dim a As String = c.textToHex(textBox1.Text)
textBox2.Text = a
USE(C++):
* hex to text *
Code: Select all
				            Conversion->Conversion c = new Conversion->Conversion();
							string a = c->hexToText(textBox2->Text);
							textBox1->Text = a;
* text to hex *
Code: Select all
				            Conversion->Conversion c = new Conversion->Conversion();
							string a = c->textToHex(textBox1->Text);
							textBox2->Text = a;
Attached below...2 credits.
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.
Image
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

Re: Conversion.dll - C#
code it
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
2 posts Page 1 of 1
Return to “Full Software”