TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Twana Sabah
NA
9
570
how to decryption this security method( tab code).
Jan 31 2017 10:32 AM
this is enpcryption code
char[,] ch = new char[,] {{'a','b','c','d','e','f'},
{'g','h','i','j','k','l'},
{'m','n','o','p','q','r'},
{'s','t','u','v','w','x'},
{'y','z','1','2','3','4'}};
for (int i = 0; i < textBox1.Text.Length; i++)
{
for (int j = 0; j < 5; j++)
{
for (int k = 0; k < 6; k++)
{
if (textBox1.Text[i] == ch[j,k])
{
k = k + 1;
j = j + 1;
for (int s = 0; s < j; s++)
{
textBox2.Text += "*";
}
textBox2.Text += " ";
for (int l = 0; l < k; l++)
{
textBox2.Text += "*";
}
textBox2.Text += " ";
}
}
if (textBox1.Text[i] == ' ')
{
textBox2.Text += " ";
}
}
}
}
Reply
Answers (
1
)
When We click a button I want to get the chechbox ChekedID
Could not load dll