Welcolm to the forum MarcDubeau ..
if your Class EditText has not been declared Private you should just be able to reference the properties to make changes ..
Private Sub Class_Globals
Public EditText1 As EditText
End Sub
in the Main Activity ..
Sub Globals
Dim myC As MyClass
End Sub
'to change the text ..
myC.EditText1.Text = "Blah Blah"
Cheers mj
Last edited: