Code:
(dlgname, 'My new dialog', bok=1, bcancel=1)
(dlg, '^/PlanetCNC.png', typ=image)
(dlg, 'My Label', typ=label, color=0xff0000)
(dlg, 'Animal|Bear~|Birds, Bees~|Aligator~|Ox~|Hummingbird~|Rattlesnake~', typ=checkbox, param=myanimal, 0, store)
(dlg, 'My Value 1', typ=numinput, param=first, def=11, store, min=-100, max=+100, dec=1, setunits)
(dlg, 'My Value 2', typ=numinput, param=second, def=22, store, min=-100, max=+100, dec=2, setunits)
(dlg, 'My Value 3', typ=numinput, param=third, def=33, store, min=-100, max=+100, dec=3, setunits)
(dlgshow)
(print,myanimal=#<myanimal>)
(print,first=#<first>)
(print,second=#<second>)
(print,third=#<third>)