Hello im trying to create my first software :)
this is what im wanting to do
There is a text box with 1 command button
and inside the text box will store arrays
0-25
for example
cypher(0) = "0"
cypher(1) = "1"
cypher(2) = "2"
cypher(3) = "3"
cypher(4) = "4"
cypher(5) = "5"
cypher(6) = "6"
cypher(7) = "7"
cypher(8) = "8"
cypher(9) = "9"
cypher(10) = "10"
cypher(11) = "11"
cypher(12) = "12"
cypher(13) = "13"
cypher(14) = "14"
cypher(15) = "15"
cypher(16) = "16"
cypher(17) = "17"
cypher(18) = "18"
cypher(19) = "19"
cypher(20) = "20"
cypher(21) = "21"
cypher(22) = "22"
cypher(23) = "23"
cypher(24) = "24"
cypher(25) = "25"
Now each number represents a letter for example
0=A
1=B
2=C
and so forth
How would i get it to where whatever the person types in the submit button it will calculate there text and convert it from numbers to the specified letter
now indeed im very VERY VERY new to vb as tho im trying to learn it
But making it say
if cypher(0) = "0" then
msgbox("A")
endif
Would be rather annoying so if im correct to add all of the strings together wouldnt i type?
If cypher(0 - cypher(25)) Then
Now the question is how would i make it understand where cypher 0 is actually A?
Any help would be much appreciated