justkill2
justkill2
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
haha
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
but now i will try it with ur hints
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
without you
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
i tried it the ghetto way to make it
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
alright gime sec
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
ye its making sense
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
ye
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
no we havent done scope yet
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
thank you im finally learning more stuff here than we do at school
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
okay i will try that
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
yes
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
no it wont
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
bcs im working on my school project, where i crypt and encrypt text user will put in
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
which need to be in string
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
I need to convert to string bcs im putting in textBox.Text
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
i mean i dont know how to do it
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
this is what i got to get A to 01, B to 02
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
string word = textBox1.Text;
char[] array = word.ToCharArray();
string encoded = "";

for (int i = 0; i < array.Length; i++)
{
int idx = char.ToUpper(array[i]) - 64;
string translate = idx.ToString();

if (idx < 10) translate = "0" + idx.ToString();

encoded = encoded + translate;
}
//MessageBox.Show(encoded);
textBox2.Text = encoded;
string word = textBox1.Text;
char[] array = word.ToCharArray();
string encoded = "";

for (int i = 0; i < array.Length; i++)
{
int idx = char.ToUpper(array[i]) - 64;
string translate = idx.ToString();

if (idx < 10) translate = "0" + idx.ToString();

encoded = encoded + translate;
}
//MessageBox.Show(encoded);
textBox2.Text = encoded;
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
from A to Z
69 replies
CC#
Created by justkill2 on 2/15/2023 in #help
❔ Alphabetic assign to number
yes
69 replies