Multiple input box excel VBA -


right i've been using multiple input boxes user input couple of strings need:

 dim u string  dim p string  u = application.inputbox("enter username", "username", type:=1)) p = application.inputbox("enter pwd", "pwd", type:=1)) 

etc ..

is there way can make input box multiple inputs or sort of multiple input in excel using vba ?

you create user form:

http://www.excel-vba-easy.com/vba-userform-excel-vba.html


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -