how to hold the output to the next page?

izza_azhar

Member
Joined
Mar 1, 2006
Messages
17
Programming Experience
Beginner
Hi all,
i have some value in array on the first page(after some operation). so, how can i populate it in the list box on the secod page? for example- put the result on the next page?
 
use property method,in the current page type:

VB.NET:
   dim f as form2
   f.arrvalue=< the array value from this page >
   f.show()
in the new form, put this property method in the class :

VB.NET:
    public property arrvalue() as interger
          get
               return <variable name>
          end get

          set ( byval value as integer)
              <variable name>=value
          end set
    end property
 
Back
Top