From: Andrey C. <sku...@us...> - 2006-06-06 07:24:06
|
Update of /cvsroot/eas-dev/clip-ui/example In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv3260/example Modified Files: test_ui.prg Log Message: Fix UIFrame order Index: test_ui.prg =================================================================== RCS file: /cvsroot/eas-dev/clip-ui/example/test_ui.prg,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- test_ui.prg 5 Jun 2006 20:34:49 -0000 1.2 +++ test_ui.prg 6 Jun 2006 07:24:03 -0000 1.3 @@ -319,13 +319,11 @@ f1 := UIFrame() grid:add(f1) f1:setLabel("Payer") - f1:setType(FRAME_PLAIN)//RAISED) + f1:setType(FRAME_RAISED) t1 := UIHBox(,,3) f1:add( t1 ) - wB := f1:layout drv:setStyle(f1,"color.bg","green") - drv:setStyle(wB,"color.bg","green") cb1 := UIComboBox({'JSC "Brown and son"'},1) w:setName("payer", cb1) |