Search results for query: *

  1. S

    Object access in multiple forms question again..

    here is my test program... the program look like this .. Public Class home Inherits System.Web.UI.Page Public iCustomerAccount As CustomerAccount.CustomerAccount = New CustomerAccount.CustomerAccount Protected Sub but_submit_Click(ByVal sender As Object, ByVal e As System.EventArgs)...
  2. S

    Object access in multiple forms question again..

    I tried the syntax on my own class.. still can't access to that object. So I create another object -- iTextbox at form1, to isolate the possible problem in my class file Public iTextbox As TextBox = New TextBox I still can't access this iTextbox object at form2. Should I include some system...
  3. S

    Object access in multiple forms question again..

    I am facing the problem as the one Robawtic was asking. I know theoretically it should be very simple and straightforward, but I just can't get my other page to access to the object created at Login page. I've changed the form class from partial class to public class. Code are like below...
Back
Top