Hello Ed, Sorry for delay....
You have a date for release the Designer?? Your example its great, only one question: grid position and size??? Its something like this?: grid.size(x,y) grid.position(x,y) El sáb, 12-11-2005 a las 15:09 -0500, Ed Leafe escribió: > On Nov 12, 2005, at 1:47 PM, Mario Lacunza wrote: > > > I need design the grid position, the diferents widgets positions, > > properties, etc ... but in Dabo I dont see any GUI designer :-) > > Oh! It's the Designer you are looking for! > > No, the Designer is not yet ready. The UI elements must > currently be created with code, not a Designer tool. It's not all > that hard; your example would look something like: > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > - - - - - - - > grid = dabo.ui.dGrid(self, ShowRowLabels=True) > grid.DataSource = "documentos" > > col = dabo.ui.dColumn(grid, Caption="I") > col.DataField = "fieldI" > col.DataType = "bool" > grid.addColumn(col) > > col = dabo.ui.dColumn(grid, Caption="Cod.") > col.DataField = "fieldCod" > col.DataType = "int" > grid.addColumn(col) > > col = dabo.ui.dColumn(grid, Caption="Por Asignar") > col.DataField = "fieldPA" > col.DataType = "str" > grid.addColumn(col) > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > - - - - - - - > > I made up the name of the table that is the source of the data, > along with the fields, but this should give you an idea of how you > create a grid in Dabo. Create the grid, and then create the columns > you need. > > Hope that helps, > > -- Ed Leafe > -- http://leafe.com > -- http://dabodev.com > > > > > _______________________________________________ > Post Messages to: [email protected] > Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users -- Saludos / Best regards Mario Lacunza Vásquez Desarrollador de Software - Webmaster Desarrollador 2 Estrellas VS2005 Website : http://mlacunzav.cogia.net Email : mario_lacunza [AT] yahoo [DOT] es Blog : http://mlacunza.blogspot.com Lima - Peru ______________________________________________ Renovamos el Correo Yahoo! Nuevos servicios, m�s seguridad http://correo.yahoo.es _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
