Inverting text with simple code. Very easy for all beginners. Easy to understand.
Inverting text with simple code. Very easy for all beginners. Easy to understand.
API Declarations
One command with default name
Rate Inverting text with simple code. Very easy for all beginners. Easy to understand.
(1(1 Vote))
dim i as integer
dim Ctr as string
for i = Len(text1.text) to 1 step -1
ctr = ctr + mid(text1.text,i,1)
next i
text2.text = ctr
end sub
Inverting text with simple code. Very easy for all beginners. Easy to understand. Comments
No comments yet — be the first to post one!
Post a Comment