Search code examples
gambas

Unknown symbol 'textbox1' in class container-gambas error


I had copied data from one form to another previously and it worked bt right now when I am trying to copy the detail of field 'PASSPORT' from login.form to from_to.form it shows an error. here's the login.form enter image description here

and here's the from_to.form with error

enter image description here enter image description here


Solution

  • Controls are not properties of their forms, and moreover they are not (by default) public.

    In other words, you access controls by using a global variable having the same name as the control, and only from inside the form, as that global variable is private.