Matteo Granatiero Active Member Licensed User Apr 27, 2021 #1 I would need to get the "text" of the "edit text" of AnotherDatePicker. I tried with B4X: Dim a as string = AnotherDatePicker1.Text but doesn't working. Library link : AnotherDatePicker
I would need to get the "text" of the "edit text" of AnotherDatePicker. I tried with B4X: Dim a as string = AnotherDatePicker1.Text but doesn't working. Library link : AnotherDatePicker
Jeffrey Cameron Well-Known Member Licensed User Longtime User Apr 27, 2021 #2 I'm pretty sure that library is deprecated, you should use the new XUI templates: [B4X] XUI Views - Cross platform views and dialogs | B4X Programming Forum (Specifically B4XDateTemplate) Upvote 0
I'm pretty sure that library is deprecated, you should use the new XUI templates: [B4X] XUI Views - Cross platform views and dialogs | B4X Programming Forum (Specifically B4XDateTemplate)
Matteo Granatiero Active Member Licensed User Apr 27, 2021 #3 Jeffrey Cameron said: I'm pretty sure that library is deprecated, you should use the new XUI templates: [B4X] XUI Views - Cross platform views and dialogs | B4X Programming Forum (Specifically B4XDateTemplate) Click to expand... but it's possible this with "my" library? Upvote 0
Jeffrey Cameron said: I'm pretty sure that library is deprecated, you should use the new XUI templates: [B4X] XUI Views - Cross platform views and dialogs | B4X Programming Forum (Specifically B4XDateTemplate) Click to expand... but it's possible this with "my" library?
Jeffrey Cameron Well-Known Member Licensed User Longtime User Apr 27, 2021 #4 Probably....? Utilize the .GetBase method to get the containing panel, then iterate through the views using .GetView until you get the text box, then you can access its .Text property. Upvote 0
Probably....? Utilize the .GetBase method to get the containing panel, then iterate through the views using .GetView until you get the text box, then you can access its .Text property.