I have more edittext in main module:
Main module :
I must change text value from other Class Module
My Module :
This code cannot work, but how can i do it ?
Main module :
B4X:
dim EdiText01 as EditText
dim EdiText02 as EditText
dim EdiText03 as EditText
dim EdiText04 as EditText
' etc...
EdiText01.text = " text1"
EdiText02.text = " text2"
EdiText03.text = " text3"
EdiText04.text = " text4"
I must change text value from other Class Module
My Module :
B4X:
EdiText01.text = " Newtext1"
EdiText02.text = " Newtext2"
EdiText03.text = "New text3"
EdiText04.text = " Newtext4"
This code cannot work, but how can i do it ?