I am making a form with 30 text boxes on it. I want to compare the text inside them to all the other text boxes, then group the like text in other labels. Any suggestions?
Printable View
I am making a form with 30 text boxes on it. I want to compare the text inside them to all the other text boxes, then group the like text in other labels. Any suggestions?
try doing (not the exact code, just an idea)
dim n as integer
n = n + 1
if text1.text <> text(n).text then
do wutever
elseif text1.text = text(n).text then
do wutever
end if
im to lazy to type out all the exact stuff but maybe thatll help