inputbox pick out word initials[请求]

sealife24

新手上路
注册
2005-10-23
消息
107
荣誉分数
0
声望点数
0
does anyone know that how to pick out the initial letter from some inputboxes?
first,the inputbox will ask you how many words you want to entered,then the user enters the word in separate inputboxes,and then display their initials in the label,but the problem is the number of inputbox are uncertain....so i really have no idea about this
thanks a lot..
 
hi

For intCount = 1 To intLength
strAcronym = Left(strWord, 1)
Next intCount
lblMessage.Caption = " The acronym is " & strAcronym

hi,I did use a loop here,but the label only display the initial entered in the last inputbox....
 
use an array of input boxes

and loop from 1 to ubound(array_Box)
and for each of them do perform a display for first char..
 
hi

hi,thanks very much,but I still confuse of the array.If the inputbox is infinite.how can I do with the array,cuz i have to de fine a range for the array number ...thank you
 
dynamic array can be resized

there's a function for it.
 
hi

thanks,if possible,can you tell me which function it is?
 
thanks

hi,I got it.It's kind of you..
THANK YOU ~~~
 
后退
顶部