Concept:
* For any container object:
lo = this.AddGroup("input", this.txtDate, this.txtDesc, this.txtQty, this.txtAmt)
* Access as the returned object
lo.BackColor = RGB(255,255,128)
WAIT WINDOW "Pausing..."
* Or as the object off its parent, by name
this.input.BackColor = RGB(255,255,128)...