I need to create a dialog box with a custom design where I can modify the quantity of a product.
I'm using this code for B4A:
But I can't get the quantity to increase when I press the blue button, even though it's already coded within an activity module.
How can I code these button events in B4XDialog?
Thank you very much for your response.
I'm using this code for B4A:
B4X:
Base=Activity
Dialog.Initialize (Base)
Dim p As B4XView = xui.CreatePanel("")
p.SetLayoutAnimated(0, 0, 0, 300dip, 300dip) 'set the content size
p.LoadLayout("FrmFactDetEditarCant")
Dialog.ShowCustom(p, "Ok", "", "Cancel")
But I can't get the quantity to increase when I press the blue button, even though it's already coded within an activity module.
How can I code these button events in B4XDialog?
Thank you very much for your response.