hi guys, im migrating from vb6 to vb.net and have only very basic knowledge of .net. now i upgraded one of my projects, in which i had function cleartexts() which would clear all the text boxes of the forms. now to upgrade it to .net i converted it to sub (as it didnt return anything), so it looked like,
but .net 2005 gives the error, "expression is not a method", how do i call it then?? or what modifications do i need to make?Code:public sub cleartexts() for i = 1 to 24 text(i).text="" next end sub
thanks.....




Reply With Quote