juanjo3691 Member Licensed User Longtime User Aug 21, 2012 #1 :BangHead: Hello. When i programmed in Vb and I wanted to delete an object or any variable I wrote something like this Object = Nothing If I have created an Edittext : Dim EditText1 as EditText EditText1.inicialize (EditText1) Activity.Adview (EditText1, 100,100,50,50) How can i to eliminate completely, and not only to change his properties Enable and Visible to False, but really delete during the program runs. Thanks to all. Gracias a todos.
:BangHead: Hello. When i programmed in Vb and I wanted to delete an object or any variable I wrote something like this Object = Nothing If I have created an Edittext : Dim EditText1 as EditText EditText1.inicialize (EditText1) Activity.Adview (EditText1, 100,100,50,50) How can i to eliminate completely, and not only to change his properties Enable and Visible to False, but really delete during the program runs. Thanks to all. Gracias a todos.
NJDude Expert Licensed User Longtime User Aug 21, 2012 #2 Like this: B4X: EditText1.RemoveView Upvote 0
juanjo3691 Member Licensed User Longtime User Aug 21, 2012 #3 I thought that this command only would disconnect the object from Activity. Thanks, NJDude. Upvote 0