Android Question User controls

fjhcitus

Member
Licensed User
Longtime User
Hi

I see a few posts about user controls, however the answers are not very clear.

In VS (vb.net) I have a form where I use 12 user controls in a wizard type situation, where the user keys in data on each of those "pages".
Each of those user controls consists of anywhere between 20 and 40 controls (labels, textboxes, buttons).

The same user control is used more than once in one wizard. For example a date/time user control where user has to enter day, hour, minute (No, i cannot use a calendar control so please don't suggest that) - separate textboxes for year, month, day, hour, minute.

In VS I have:
Dim StartDateTime As New UCDateTime
Dim EndDateTime As New UCDateTime

I respond to events being fired by the Next and Previous buttons on UCDateTime, however moving to different "pages" in the wizard if it is StartDateTime.Next or EndDateTime.Next.
I have access to the individual Textboxes via properties; StartateTime.xYear, EndDateTime.xYear.

UCDateTime is used multible times on same form and on multible other forms during the project.

So, multible user controls used multible times on same form and on different forms - is that possible in B4A ?
 

Attachments

  • UCDateTime.png
    UCDateTime.png
    3.1 KB · Views: 229
Top